/* ============================================================
   preview.css — scoped to .pv-page
   Premium Black / White / Gold homepage redesign
   ============================================================ */

/* ── Reset & base ─────────────────────────────────────────── */
.pv-page *,
.pv-page *::before,
.pv-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.pv-page {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #3d3d3d;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout helpers ───────────────────────────────────────── */
.pv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.pv-section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .pv-section { padding: 48px 0; }
  .pv-container { padding: 0 20px; }
}

/* ── Typography ───────────────────────────────────────────── */
.pv-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #767676;
  margin-bottom: 20px;
}

.pv-h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  color: #000;
  line-height: 1.12;
  letter-spacing: -0.005em;
}

.pv-h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.pv-h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
}

.pv-body {
  font-size: 17px;
  font-weight: 400;
  color: #3d3d3d;
  line-height: 1.7;
  max-width: 65ch;
}

.pv-body-sm {
  font-size: 15px;
  color: #555;
  line-height: 1.65;
}

.pv-muted {
  font-size: 13px;
  color: #767676;
}

/* ── Buttons ──────────────────────────────────────────────── */
.pv-btn {
  display: inline-block;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
  border: none;
}

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

.pv-btn:focus-visible {
  outline: 2px solid #f7ba02;
  outline-offset: 2px;
}

.pv-btn-primary {
  background: #f7ba02;
  color: #000;
}

.pv-btn-secondary {
  background: #fff;
  color: #000;
  border: 1.5px solid #000;
}

.pv-btn-secondary:hover {
  background: #f5f5f5;
  opacity: 1;
}

.pv-btn-outline {
  background: transparent;
  color: #000;
  border: 1.5px solid #d0d0d0;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.15s, background 0.15s;
}

.pv-btn-outline:hover {
  border-color: #000;
  background: #fafafa;
}

.pv-btn-outline:focus-visible {
  outline: 2px solid #f7ba02;
  outline-offset: 2px;
}

/* ── Divider ──────────────────────────────────────────────── */
.pv-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 0;
}

/* ── Nav ──────────────────────────────────────────────────── */
.pv-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.pv-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.pv-nav-logo {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.pv-nav-logo:focus-visible {
  outline: 2px solid #f7ba02;
  outline-offset: 2px;
}

.pv-nav-logo span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #f7ba02;
  border-radius: 50%;
  margin-left: 3px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

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

@media (max-width: 600px) {
  .pv-nav-actions .pv-btn-secondary { display: none; }
}

/* ── Hero ─────────────────────────────────────────────────── */
.pv-hero {
  padding: 100px 0 90px;
  border-bottom: 1px solid #e5e5e5;
}

.pv-hero-inner {
  max-width: 720px;
}

.pv-hero .pv-h1 {
  margin-bottom: 24px;
}

.pv-hero .pv-body {
  max-width: 560px;
  margin-bottom: 36px;
}

.pv-hero-body {
  margin-top: 24px;
}

.pv-hero-cta {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.pv-hero-fine {
  font-size: 13px;
  color: #767676;
}

@media (max-width: 600px) {
  .pv-hero { padding: 60px 0 56px; }
  .pv-hero-cta { flex-direction: column; align-items: flex-start; }
  .pv-hero-cta .pv-btn { width: 100%; text-align: center; }
}

/* ── Trust strip ──────────────────────────────────────────── */
.pv-trust {
  padding: 48px 0;
  border-bottom: 1px solid #e5e5e5;
  background: #fafafa;
}

.pv-trust-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.pv-trust-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
  white-space: nowrap;
  flex-shrink: 0;
}

.pv-trust-items {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.pv-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #3d3d3d;
}

.pv-trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f7ba02;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .pv-trust-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .pv-trust-items { gap: 20px; }
}

/* ── How it works ─────────────────────────────────────────── */
.pv-hiw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}

.pv-hiw-col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f7ba02;
  margin-bottom: 20px;
}

.pv-hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 4px;
}

.pv-hiw-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pv-hiw-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f5f5f5;
  border: 1.5px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #555;
  margin-top: 1px;
}

.pv-hiw-text {
  font-size: 16px;
  color: #3d3d3d;
  line-height: 1.5;
  padding-top: 4px;
}

.pv-hiw-footer {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid #e5e5e5;
  font-size: 15px;
  font-style: italic;
  color: #767676;
  text-align: center;
}

@media (max-width: 720px) {
  .pv-hiw-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Why Orca ─────────────────────────────────────────────── */
.pv-why {
  background: #000;
  color: #fff;
}

.pv-why .pv-h2 {
  color: #fff;
  margin-bottom: 28px;
}

.pv-label--onDark {
  color: #888;
}

.pv-why-body {
  margin-top: 24px;
}

.pv-why-copy {
  max-width: 640px;
}

.pv-why-copy p {
  font-size: 17px;
  line-height: 1.75;
  color: #ccc;
}

.pv-why-copy p + p {
  margin-top: 16px;
}

/* ── Featured assistants ──────────────────────────────────── */
.pv-featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.pv-featured-header .pv-body-sm {
  margin-top: 8px;
}

.pv-featured-sub {
  margin-top: 8px;
}

.pv-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

/* VA card -------------------------------------------------- */
.pv-card {
  background: #fff;
  border: 1.5px solid #e5e5e5;
  border-radius: 10px;
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pv-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(-1px);
}

.pv-card-match {
  font-size: 11px;
  font-weight: 500;
  color: #866b10;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pv-card-match::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #f7ba02;
  border-radius: 50%;
}

.pv-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.pv-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #555;
  flex-shrink: 0;
  border: 1.5px solid #e5e5e5;
}

.pv-card-name {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.pv-card-role {
  font-size: 13px;
  color: #767676;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.pv-card-location {
  font-size: 12px;
  color: #767676;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.pv-card-focus {
  font-size: 14px;
  color: #3d3d3d;
  line-height: 1.5;
  margin-bottom: 14px;
  border-left: 2.5px solid #f7ba02;
  padding-left: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pv-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  max-height: 44px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.pv-tag {
  font-size: 12px;
  font-weight: 500;
  color: #444;
  background: #f5f5f5;
  border-radius: 4px;
  padding: 4px 10px;
}

.pv-card-meta {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
}

.pv-card-meta-secondary {
  color: #767676;
}

.pv-card-footer {
  margin-top: auto;
}

@media (max-width: 700px) {
  .pv-cards-grid { grid-template-columns: 1fr; }
}

/* ── For VAs ──────────────────────────────────────────────── */
.pv-forva {
  background: #fafafa;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.pv-forva-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pv-forva .pv-h2 {
  margin-bottom: 20px;
}

.pv-forva .pv-body {
  margin-bottom: 28px;
}

.pv-forva-body {
  margin-top: 16px;
}

.pv-forva-lines {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pv-forva-lines li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #3d3d3d;
  font-weight: 500;
}

.pv-forva-lines li::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: #f7ba02;
  flex-shrink: 0;
}

.pv-forva-visual {
  background: #000;
  border-radius: 12px;
  padding: 48px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.pv-forva-visual::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: #f7ba02;
  border-radius: 50%;
  opacity: 0.08;
}

.pv-forva-visual-heading {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.pv-forva-visual-sub {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 32px;
}

.pv-forva-stat {
  font-size: 13px;
  color: #888;
  border-top: 1px solid #222;
  padding-top: 16px;
}

.pv-forva-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #f7ba02;
  margin-bottom: 2px;
}

@media (max-width: 768px) {
  .pv-forva-inner { grid-template-columns: 1fr; gap: 40px; }
  .pv-forva-visual { display: none; }
}

/* ── Final CTA ────────────────────────────────────────────── */
.pv-finalcta {
  text-align: center;
}

.pv-finalcta .pv-h2 {
  margin-bottom: 36px;
}

.pv-finalcta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ── Footer ───────────────────────────────────────────────── */
.pv-footer {
  padding: 32px 0;
  border-top: 1px solid #e5e5e5;
}

.pv-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.pv-footer-logo {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

.pv-footer-note {
  font-size: 13px;
  color: #767676;
}
