@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Serif:wght@500;600;700&display=swap");

.theme-vc {
  --vc-bg: #f4f1ea;
  --vc-ink: #15232a;
  --vc-muted: #58656d;
  --vc-surface: rgba(255, 255, 255, 0.88);
  --vc-surface-strong: #ffffff;
  --vc-border: rgba(21, 35, 42, 0.12);
  --vc-border-strong: rgba(21, 35, 42, 0.22);
  --vc-accent: #0f766e;
  --vc-accent-dark: #115e59;
  --vc-accent-soft: rgba(15, 118, 110, 0.12);
  --vc-alert: #b45309;
  --vc-alert-soft: rgba(180, 83, 9, 0.12);
  --vc-danger: #b91c1c;
  --vc-danger-soft: rgba(185, 28, 28, 0.12);
  --vc-shadow: 0 30px 70px -38px rgba(21, 35, 42, 0.42);
  --vc-max-w: 1120px;
  --vc-pad: clamp(18px, 4vw, 48px);
  --ink: var(--vc-ink);
  --muted-ink: var(--vc-muted);
  --accent: var(--vc-accent);
  --accent-dark: var(--vc-accent-dark);
  --accent-soft: var(--vc-accent-soft);
  --navy: var(--vc-ink);
}

body.theme-vc.landing {
  background-color: var(--vc-bg);
  background-image:
    radial-gradient(circle at 10% 10%, rgba(15, 118, 110, 0.12), transparent 34%),
    radial-gradient(circle at 86% 4%, rgba(180, 83, 9, 0.12), transparent 28%),
    linear-gradient(transparent 27px, rgba(21, 35, 42, 0.04) 28px),
    linear-gradient(90deg, transparent 27px, rgba(21, 35, 42, 0.04) 28px);
  background-size: auto, auto, 28px 28px, 28px 28px;
  color: var(--vc-ink);
  font-family: "IBM Plex Sans", "Work Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.page.theme-vc:not(.landing) {
  background-color: var(--vc-bg);
  background-image:
    radial-gradient(circle at 12% 2%, rgba(15, 118, 110, 0.12), transparent 36%),
    radial-gradient(circle at 88% 2%, rgba(180, 83, 9, 0.1), transparent 28%);
  color: var(--vc-ink);
  font-family: "IBM Plex Sans", "Work Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.theme-vc .container,
.theme-vc.landing .container {
  max-width: var(--vc-max-w);
  padding: 0 var(--vc-pad);
}

.theme-vc .nav,
.theme-vc.landing .nav {
  background: rgba(244, 241, 234, 0.9);
  border-bottom: 1px solid var(--vc-border);
  backdrop-filter: blur(14px);
}

.theme-vc .nav-inner,
.theme-vc.landing .nav-inner {
  max-width: var(--vc-max-w);
  margin: 0 auto;
  padding: 0 var(--vc-pad);
  height: 74px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.theme-vc .brand,
.theme-vc.landing .brand {
  color: var(--vc-ink);
  font-family: "IBM Plex Serif", "Sora", sans-serif;
  font-size: 20px;
  letter-spacing: 0.02em;
}

.theme-vc .brand-logo,
.theme-vc.landing .brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--vc-border);
  color: var(--vc-accent-dark);
}

.theme-vc .nav-links,
.theme-vc.landing .nav-links {
  gap: 14px;
  color: var(--vc-muted);
  flex: 1 1 auto;
  min-width: 0;
}

.theme-vc .nav-link,
.theme-vc.landing .nav-link {
  white-space: nowrap;
}

.theme-vc .nav-link:hover,
.theme-vc.landing .nav-link:hover {
  color: var(--vc-ink);
}

.theme-vc .lang-wrap,
.theme-vc.landing .lang-wrap {
  color: var(--vc-muted);
  text-transform: none;
}

.theme-vc .lang-select,
.theme-vc.landing .lang-select {
  min-width: 64px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 999px;
  border: 1px solid var(--vc-border);
  background: rgba(255, 255, 255, 0.78);
  color: var(--vc-ink);
}

.theme-vc .nav-actions,
.theme-vc.landing .nav-actions {
  margin-left: auto;
  gap: 8px;
  flex: 0 0 auto;
}

.theme-vc .auth-actions,
.theme-vc.landing .auth-actions {
  gap: 8px;
  flex-wrap: nowrap;
}

.theme-vc .btn,
.theme-vc.landing .btn {
  border-radius: 12px;
  border: 1px solid transparent;
  height: 44px;
  padding: 0 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.theme-vc .nav .btn {
  height: 34px;
  padding: 0 12px;
  font-size: 12px;
  border-radius: 10px;
}

.theme-vc .btn-primary,
.theme-vc.landing .btn-primary {
  background: var(--vc-accent);
  color: #f6fbfa;
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.24);
}

.theme-vc .btn-primary:hover,
.theme-vc.landing .btn-primary:hover {
  background: var(--vc-accent-dark);
}

.theme-vc .btn-outline,
.theme-vc.landing .btn-outline,
.theme-vc .btn-secondary,
.theme-vc.landing .btn-secondary,
.theme-vc .btn-ghost,
.theme-vc.landing .btn-ghost {
  background: rgba(255, 255, 255, 0.75);
  color: var(--vc-ink);
  border-color: var(--vc-border-strong);
}

.theme-vc .btn-outline:hover,
.theme-vc.landing .btn-outline:hover,
.theme-vc .btn-secondary:hover,
.theme-vc.landing .btn-secondary:hover,
.theme-vc .btn-ghost:hover,
.theme-vc.landing .btn-ghost:hover {
  background: rgba(15, 118, 110, 0.08);
  border-color: var(--vc-accent);
}

.theme-vc .section {
  padding: 80px 0;
}

.theme-vc .section-eyebrow {
  background: rgba(21, 35, 42, 0.08);
  color: var(--vc-accent-dark);
  font-weight: 700;
  letter-spacing: 0.18em;
}

.theme-vc .section-title,
.theme-vc .hero-eyebrow,
.theme-vc .pricing-title,
.theme-vc .pricing-support-title,
.theme-vc .contact-details-title,
.theme-vc .vc-contact-panel-title,
.theme-vc .vc-demo-overlay-title,
.theme-vc .article-section h2,
.theme-vc .article-cta h2 {
  font-family: "IBM Plex Serif", "Sora", sans-serif;
}

.theme-vc .section-title {
  color: var(--vc-ink);
}

.theme-vc .section-subtitle,
.theme-vc .card-text,
.theme-vc .panel-text,
.theme-vc .pricing-note,
.theme-vc .pricing-support-text,
.theme-vc .article-content,
.theme-vc .article-section p,
.theme-vc .article-section li {
  color: var(--vc-muted);
}

.theme-vc .card,
.theme-vc .pricing-card,
.theme-vc .pricing-support,
.theme-vc .contact-detail,
.theme-vc .vc-contact-panel,
.theme-vc .vc-faq-item,
.theme-vc .article-content {
  background: var(--vc-surface);
  border: 1px solid var(--vc-border);
  box-shadow: var(--vc-shadow);
}

.theme-vc .workspace-primary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(15, 118, 110, 0.08));
  border: 1px solid var(--vc-border);
  box-shadow: var(--vc-shadow);
}

.theme-vc .workspace-primary-icon {
  background: rgba(255, 255, 255, 0.9);
  color: var(--vc-ink);
  border: 1px solid var(--vc-border);
  box-shadow: 0 12px 24px rgba(21, 35, 42, 0.08);
}

.theme-vc .workspace-primary-title,
.theme-vc .danger-title,
.theme-vc .profile-hero-name,
.theme-vc .profile-vault-danger-name {
  color: var(--vc-ink);
}

.theme-vc .workspace-primary-link,
.theme-vc .profile-note,
.theme-vc .danger-note,
.theme-vc .profile-hero-redirect-label {
  color: var(--vc-muted);
}

.theme-vc .workspace-primary-link:hover {
  color: var(--vc-accent);
}

.theme-vc .billing-workspace--primary {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--vc-border);
  box-shadow: var(--vc-shadow);
}

.theme-vc .profile-hero {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(15, 118, 110, 0.1));
  border: 1px solid var(--vc-border);
  box-shadow: var(--vc-shadow);
}

.theme-vc .profile-hero-icon {
  background: rgba(255, 255, 255, 0.92);
  color: var(--vc-ink);
  border: 1px solid var(--vc-border);
  box-shadow: 0 12px 24px rgba(21, 35, 42, 0.08);
}

.theme-vc .profile-hero-link {
  color: var(--vc-accent);
}

.theme-vc .profile-hero-link:hover {
  color: var(--vc-accent-dark);
}

.theme-vc .profile-vault-danger {
  border-top-color: var(--vc-border);
}

.theme-vc .profile-vault-danger-item {
  background: rgba(185, 28, 28, 0.08);
  border: 1px solid rgba(185, 28, 28, 0.18);
}

.theme-vc .vc-hero {
  padding: 88px 0 44px;
}

.theme-vc .vc-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.theme-vc .vc-hero-title {
  margin-top: 20px;
  color: var(--vc-ink);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.theme-vc .vc-hero-lead {
  margin-top: 22px;
  max-width: 720px;
  color: var(--vc-muted);
  font-size: 1.2rem;
  line-height: 1.75;
}

.theme-vc .vc-hero-trust {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.theme-vc .vc-trust-item {
  font-size: 0.88rem;
  color: var(--vc-accent-dark);
  font-weight: 500;
}

.theme-vc .vc-trust-item::before {
  content: "✓ ";
  font-weight: 700;
  color: var(--vc-accent);
}

.theme-vc .vc-hero-note {
  margin-top: 18px;
  max-width: 640px;
  color: var(--vc-accent-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.theme-vc .vc-metric-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.theme-vc .vc-metric {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--vc-border);
  box-shadow: 0 22px 40px -32px rgba(21, 35, 42, 0.45);
}

.theme-vc .vc-metric-value {
  color: var(--vc-ink);
  font-size: 1.35rem;
  font-weight: 700;
}

.theme-vc .vc-metric-label {
  margin-top: 6px;
  color: var(--vc-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.theme-vc .vc-hero-visual {
  min-height: 520px;
}

.theme-vc .vc-orbit {
  position: relative;
  min-height: 520px;
}

.theme-vc .vc-orbit-card {
  position: absolute;
  border-radius: 24px;
  border: 1px solid var(--vc-border);
  background: var(--vc-surface-strong);
  box-shadow: var(--vc-shadow);
}

.theme-vc .vc-orbit-card--desk {
  inset: 0 auto auto 0;
  width: min(100%, 430px);
  padding: 22px;
}

.theme-vc .vc-orbit-card--record {
  right: 0;
  top: 110px;
  width: 300px;
  padding: 18px;
}

.theme-vc .vc-orbit-card--verify {
  left: 54px;
  right: 54px;
  bottom: 0;
  padding: 18px;
}

.theme-vc .vc-visual-label {
  color: var(--vc-ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.theme-vc .vc-status-list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.theme-vc .vc-status-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(21, 35, 42, 0.04);
}

.theme-vc .vc-status-pill {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.theme-vc .vc-status-pill--warning {
  background: var(--vc-alert);
}

.theme-vc .vc-status-pill--danger {
  background: var(--vc-danger);
}

.theme-vc .vc-status-pill--neutral {
  background: #64748b;
}

.theme-vc .vc-status-text,
.theme-vc .vc-demo-item,
.theme-vc .vc-fit-item,
.theme-vc .vc-band-item,
.theme-vc .pricing-item {
  color: var(--vc-ink);
}

.theme-vc .vc-chip-list {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.theme-vc .vc-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--vc-accent-soft);
  color: var(--vc-accent-dark);
  font-size: 0.84rem;
  font-weight: 600;
}

.theme-vc .vc-chip--warning {
  background: var(--vc-alert-soft);
  color: var(--vc-alert);
}

.theme-vc .vc-record-lines {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.theme-vc .vc-record-lines span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.16), rgba(21, 35, 42, 0.08));
}

.theme-vc .vc-record-lines span:nth-child(1) {
  width: 84%;
}

.theme-vc .vc-record-lines span:nth-child(2) {
  width: 62%;
}

.theme-vc .vc-record-lines span:nth-child(3) {
  width: 72%;
}

.theme-vc .vc-verify-panel {
  margin-top: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 16px;
  background: rgba(21, 35, 42, 0.04);
}

.theme-vc .vc-verify-panel p {
  margin: 0;
  color: var(--vc-muted);
  line-height: 1.6;
}

.theme-vc .vc-verify-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--vc-accent), var(--vc-alert));
  margin-top: 4px;
}

.theme-vc .vc-pillar-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.theme-vc .vc-pillar-card,
.theme-vc .vc-path-card {
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76));
  border: 1px solid var(--vc-border);
  box-shadow: var(--vc-shadow);
}

.theme-vc .vc-pillar-label,
.theme-vc .vc-path-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(21, 35, 42, 0.08);
  color: var(--vc-accent-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.theme-vc .vc-pillar-title,
.theme-vc .vc-path-title {
  margin-top: 18px;
  color: var(--vc-ink);
  font-size: 1.2rem;
  line-height: 1.3;
}

.theme-vc .vc-pillar-text,
.theme-vc .vc-path-text {
  margin-top: 12px;
  color: var(--vc-muted);
  line-height: 1.72;
}

.theme-vc .vc-path-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.theme-vc .vc-path-line {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.12);
  color: var(--vc-accent-dark);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.theme-vc .vc-step-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.theme-vc .vc-step-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--vc-border);
  box-shadow: 0 24px 44px -34px rgba(21, 35, 42, 0.45);
}

.theme-vc .vc-step-index {
  color: var(--vc-accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.theme-vc .vc-step-title,
.theme-vc .vc-screen-title,
.theme-vc .vc-article-title,
.theme-vc .vc-demo-badge,
.theme-vc .vc-band-kicker,
.theme-vc .vc-faq-item h3 {
  color: var(--vc-ink);
}

.theme-vc .vc-step-title {
  margin-top: 14px;
  font-size: 1.08rem;
}

.theme-vc .vc-step-text,
.theme-vc .vc-screen-text,
.theme-vc .vc-article-text,
.theme-vc .vc-band-subtitle,
.theme-vc .vc-demo-note,
.theme-vc .vc-faq-item p,
.theme-vc .vc-contact-panel,
.theme-vc .vc-contact-panel .vc-fit-item {
  color: var(--vc-muted);
}

.theme-vc .vc-band {
  margin-top: 28px;
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62));
  border: 1px solid var(--vc-border);
  box-shadow: var(--vc-shadow);
}

.theme-vc .vc-band-kicker {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
}

.theme-vc .vc-band-subtitle {
  margin-top: 10px;
  max-width: 760px;
  line-height: 1.7;
}

.theme-vc .vc-band-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.theme-vc .vc-band-item {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(21, 35, 42, 0.04);
  line-height: 1.6;
}

.theme-vc .vc-screen-grid,
.theme-vc .vc-articles-grid,
.theme-vc .vc-faq-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.theme-vc .vc-articles-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.theme-vc .vc-screen-card,
.theme-vc .vc-article-card,
.theme-vc .vc-faq-item {
  padding: 18px;
  border-radius: 24px;
  background: var(--vc-surface);
  border: 1px solid var(--vc-border);
  box-shadow: var(--vc-shadow);
}

.theme-vc .vc-screen-frame {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--vc-border);
  background: linear-gradient(180deg, rgba(21, 35, 42, 0.04), rgba(255, 255, 255, 0.85));
}

.theme-vc .vc-screen-shot,
.theme-vc .vc-demo-poster {
  width: 100%;
  height: auto;
  display: block;
}

.theme-vc .vc-screen-title,
.theme-vc .vc-article-title {
  margin-top: 16px;
  font-size: 1.08rem;
}

.theme-vc .vc-screen-text,
.theme-vc .vc-article-text {
  margin-top: 10px;
  line-height: 1.65;
}

.theme-vc .vc-demo-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

.theme-vc .vc-demo-stage,
.theme-vc .vc-demo-info {
  border-radius: 26px;
  border: 1px solid var(--vc-border);
  background: var(--vc-surface);
  box-shadow: var(--vc-shadow);
}

.theme-vc .vc-demo-stage {
  overflow: hidden;
  min-height: 360px;
}

.theme-vc .vc-demo-player {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  background: #0f172a;
}

.theme-vc .vc-demo-stage--placeholder {
  position: relative;
}

.theme-vc .vc-demo-overlay {
  position: absolute;
  inset: auto 24px 24px 24px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(21, 35, 42, 0.82);
  color: #f8fafc;
  backdrop-filter: blur(10px);
}

.theme-vc .vc-demo-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f8fafc;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.theme-vc .vc-demo-overlay-title {
  margin-top: 14px;
  color: #f8fafc;
  font-size: 1.2rem;
}

.theme-vc .vc-demo-overlay-text {
  margin-top: 10px;
  color: rgba(248, 250, 252, 0.82);
  line-height: 1.65;
}

.theme-vc .vc-demo-info {
  padding: 24px;
}

.theme-vc .vc-demo-note {
  margin: 0;
  line-height: 1.7;
}

.theme-vc .vc-demo-list,
.theme-vc .vc-fit-list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.theme-vc .vc-demo-item,
.theme-vc .vc-fit-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(21, 35, 42, 0.05);
  line-height: 1.6;
}

.theme-vc .vc-demo-actions {
  margin-top: 22px;
}

.theme-vc .vc-article-card {
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.theme-vc .vc-article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 118, 110, 0.26);
  box-shadow: 0 34px 58px -40px rgba(15, 118, 110, 0.45);
}

.theme-vc .vc-article-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--vc-accent-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.theme-vc .vc-faq-item h3 {
  margin: 0;
  font-size: 1rem;
}

.theme-vc .vc-faq-item p {
  margin-top: 12px;
  line-height: 1.7;
}

.theme-vc .pricing-item,
.theme-vc .vc-demo-item,
.theme-vc .vc-fit-item {
  line-height: 1.6;
}

.theme-vc .vc-contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: start;
}

.theme-vc .vc-contact-aside {
  display: grid;
  gap: 18px;
}

.theme-vc .vc-contact-panel,
.theme-vc .contact-details,
.theme-vc .contact-form {
  border-radius: 24px;
}

.theme-vc .vc-contact-panel {
  padding: 22px;
}

.theme-vc .vc-contact-panel-title {
  margin: 0;
  color: var(--vc-ink);
  font-size: 1.2rem;
}

.theme-vc .contact-details {
  margin-top: 0;
}

.theme-vc .contact-detail-link,
.theme-vc .article-related a,
.theme-vc .footer-link {
  color: var(--vc-accent-dark);
}

.theme-vc .contact-detail-link:hover,
.theme-vc .article-related a:hover,
.theme-vc .footer-link:hover {
  color: var(--vc-accent);
}

.theme-vc .form-input,
.theme-vc .form-textarea {
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--vc-border-strong);
}

.theme-vc .form-input:focus,
.theme-vc .form-textarea:focus {
  border-color: var(--vc-accent);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.theme-vc .footer {
  border-top: 1px solid var(--vc-border);
  background: rgba(255, 255, 255, 0.52);
}

.theme-vc .footer-tagline,
.theme-vc .footer-meta-text {
  color: var(--vc-muted);
}

.theme-vc .article-page .section-header {
  max-width: 820px;
}

.theme-vc .article-content {
  max-width: 860px;
  margin: 42px auto 0;
  padding: 34px;
  border-radius: 28px;
}

.theme-vc .article-section {
  margin-top: 28px;
}

.theme-vc .article-section:first-child {
  margin-top: 0;
}

.theme-vc .article-section h2 {
  color: var(--vc-ink);
  font-size: 1.5rem;
}

.theme-vc .article-section ul,
.theme-vc .article-section ol {
  margin-top: 14px;
}

.theme-vc .article-cta {
  margin-top: 34px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--vc-accent), var(--vc-accent-dark));
  color: #f8fafc;
}

.theme-vc .article-cta h2,
.theme-vc .article-cta p {
  color: #f8fafc;
}

.theme-vc .article-cta .btn-primary {
  background: #ffffff;
  color: var(--vc-accent-dark);
}

.theme-vc .article-cta .btn-outline {
  background: transparent;
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.45);
}

.theme-vc .article-related {
  margin-top: 28px;
}

.theme-vc .article-related h3 {
  color: var(--vc-muted);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.theme-vc .article-related ul {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  list-style: none;
  padding: 0;
}

@media (max-width: 1023px) {
  .theme-vc .nav-inner,
  .theme-vc.landing .nav-inner {
    height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .theme-vc .nav-actions,
  .theme-vc.landing .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .theme-vc .vc-hero-grid,
  .theme-vc .vc-demo-grid,
  .theme-vc .vc-contact-grid,
  .theme-vc .vc-screen-grid,
  .theme-vc .vc-articles-grid,
  .theme-vc .vc-faq-grid,
  .theme-vc .vc-pillar-grid,
  .theme-vc .vc-path-grid,
  .theme-vc .vc-step-grid {
    grid-template-columns: 1fr;
  }

  .theme-vc .vc-hero-visual {
    min-height: 420px;
  }

  .theme-vc .vc-orbit {
    min-height: 420px;
  }

  .theme-vc .vc-orbit-card--record {
    top: 126px;
  }

  .theme-vc .vc-orbit-card--verify {
    left: 18px;
    right: 18px;
  }

  .theme-vc .vc-band-grid {
    grid-template-columns: 1fr;
  }
}
 
@media (max-width: 720px) {
  .theme-vc .section {
    padding: 64px 0;
  }

  .theme-vc .vc-hero {
    padding: 64px 0 32px;
  }

  .theme-vc .vc-hero-title {
    font-size: 2.25rem;
    line-height: 1.02;
  }

  .theme-vc .vc-hero-lead {
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .theme-vc .nav-actions,
  .theme-vc.landing .nav-actions {
    gap: 8px;
    align-items: center;
  }

  .theme-vc .auth-actions,
  .theme-vc.landing .auth-actions {
    gap: 8px;
  }

  .theme-vc .nav .btn {
    height: 32px;
    padding: 0 10px;
    font-size: 11px;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .theme-vc .vc-metric-grid {
    grid-template-columns: 1fr;
  }

  .theme-vc .vc-orbit-card--desk,
  .theme-vc .vc-orbit-card--record,
  .theme-vc .vc-orbit-card--verify {
    position: static;
    width: 100%;
  }

  .theme-vc .vc-orbit {
    display: grid;
    gap: 14px;
    min-height: auto;
  }

  .theme-vc .vc-hero-visual {
    min-height: auto;
  }

  .theme-vc .article-content {
    padding: 24px;
  }

  .theme-vc .article-related ul {
    grid-template-columns: 1fr;
  }
}
