/*
Theme Name: VisualCore Motion
Theme URI: https://www.instagram.com/visualcore.motion/
Author: VisualCore Motion
Description: One-page WordPress landing page for VisualCore Motion with editable contact details, offer packages and built-in inquiry form.
Version: 1.4.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: visualcore-motion
*/

:root {
  --bg: #050607;
  --bg-elev: #0b0d10;
  --bg-card: #101318;
  --bg-card-hover: #14171d;
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #f1f3f6;
  --text-mute: #a8aeb8;
  --text-dim: #6b7280;
  --silver-1: #e8eaee;
  --silver-2: #b5bac3;
  --blue: #2b72e8;
  --blue-bright: #6fa4ff;
  --blue-deep: #184fa8;
  --glow: none;
  --radius: 12px;
  --container: 1120px;
  --gutter: clamp(20px, 4vw, 40px);
  --font: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.admin-bar .vc-nav { top: 32px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.vc-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.vc-section { padding: clamp(64px, 9vw, 104px) 0; position: relative; }
.vc-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--silver-2);
  margin-bottom: 14px;
  font-weight: 800;
}
.vc-section-head {
  max-width: 780px;
  margin: 0 0 clamp(34px, 5vw, 56px);
  text-align: left;
}
h1, h2, h3 {
  margin: 0 0 16px;
  font-weight: 760;
  letter-spacing: -.018em;
  line-height: 1.1;
}
h1 { font-size: clamp(36px, 6vw, 66px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: 21px; }
p { margin: 0; color: var(--text-mute); }

.vc-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,6,7,.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}
.vc-nav-inner {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.vc-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .08em; }
.vc-brand img { width: 28px; height: 28px; }
.vc-brand span span { color: var(--blue-bright); }
.vc-links { display: flex; gap: 30px; font-size: 14px; color: var(--text-mute); }
.vc-links a:hover { color: var(--text); }
.vc-mobile-only { display: none; }
.vc-menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}
.vc-menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
}
.vc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 760;
  border: 1px solid var(--border-strong);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.vc-btn:hover { transform: translateY(-2px); }
.vc-btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: none;
  border-color: rgba(111,164,255,.42);
}
.vc-btn-ghost { background: rgba(255,255,255,.03); color: var(--text); }

.vc-hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.vc-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 15%, rgba(43,114,232,.16), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.035), transparent 44%);
  opacity: 1;
}
.vc-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 8vw, 90px);
  align-items: center;
}
.vc-blue { color: var(--blue-bright); }
.vc-gradient-text { color: var(--text); }
.vc-hero-sub { max-width: 650px; font-size: clamp(18px, 2vw, 21px); margin-bottom: 30px; }
.vc-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.vc-meta { display: flex; gap: 22px; flex-wrap: wrap; color: var(--text-dim); font-size: 14px; }
.vc-meta span:before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; background: var(--blue-bright); box-shadow: var(--glow); }
.vc-logo-card {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  background: #080a0d;
  box-shadow: none;
}
.vc-logo-card img { border-radius: 18px; }

.vc-grid-4, .vc-grid-3 {
  display: grid;
  gap: 18px;
}
.vc-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.vc-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vc-card, .vc-package, .vc-step, .vc-faq, .vc-form-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  padding: 26px;
}
.vc-card:hover, .vc-package:hover { border-color: rgba(111,164,255,.28); background: var(--bg-card-hover); }
.vc-card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  color: var(--blue-bright);
  margin-bottom: 20px;
  font-weight: 900;
}
.vc-list { margin: 18px 0 0; padding: 0; list-style: none; color: var(--text-mute); }
.vc-list li { margin: 10px 0; padding-left: 22px; position: relative; }
.vc-list li:before { content: ""; position: absolute; left: 0; top: .72em; width: 8px; height: 2px; background: var(--blue-bright); }

.vc-package { position: relative; display: flex; flex-direction: column; min-height: 100%; }
.vc-package-featured {
  border-color: rgba(77,141,255,.55);
  box-shadow: 0 0 0 1px rgba(111,164,255,.12);
}
.vc-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.vc-price { font-size: 44px; font-weight: 900; letter-spacing: -.04em; margin: 12px 0 4px; }
.vc-price small { font-size: 14px; color: var(--text-dim); font-weight: 600; }
.vc-note { font-size: 13px; color: var(--text-dim); margin-top: 14px; }

.vc-steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.vc-step-num { color: var(--blue-bright); font-weight: 900; letter-spacing: .14em; margin-bottom: 18px; }
.vc-industries { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.vc-pill { border: 1px solid var(--border); border-radius: 999px; padding: 12px 16px; color: var(--silver-2); background: rgba(255,255,255,.03); }

.vc-reference {
  border: 1px solid rgba(77,141,255,.35);
  border-radius: 28px;
  padding: clamp(30px, 6vw, 56px);
  background: #0c1016;
}
.vc-reference-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: center; }

.vc-faq-wrap { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }

.vc-projects-section {
  background: #07090c;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.vc-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.vc-project-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-card);
}
.vc-project-image {
  display: block;
  aspect-ratio: 4 / 3;
  background: #0b0d10;
  overflow: hidden;
}
.vc-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.vc-project-card:hover .vc-project-image img { transform: scale(1.035); }
.vc-project-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--blue-bright);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: .08em;
  background: linear-gradient(135deg, rgba(43,114,232,.16), rgba(255,255,255,.03));
}
.vc-project-content { padding: 22px; }
.vc-project-content h3 { margin-bottom: 10px; }
.vc-project-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue-bright);
  font-weight: 800;
}
.vc-project-link:after {
  content: "→";
  margin-left: 8px;
  transition: transform .2s ease;
}
.vc-project-card:hover .vc-project-link:after { transform: translateX(4px); }
.vc-project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.vc-project-meta span {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--silver-2);
  font-size: 12px;
  line-height: 1.2;
  background: rgba(255,255,255,.03);
}
.vc-empty-projects {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-card);
}
.vc-single-project .vc-nav { position: sticky; }
.vc-project-hero {
  padding: clamp(70px, 10vw, 120px) 0;
  border-bottom: 1px solid var(--border);
  background: #07090c;
}
.vc-project-hero-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
}
.vc-project-hero-image {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-card);
}
.vc-project-hero-image img {
  width: 100%;
  height: auto;
}
.vc-project-meta-large { margin: 20px 0 0; }
.vc-back-link {
  display: inline-flex;
  color: var(--blue-bright);
  font-weight: 760;
  margin-bottom: 24px;
}
.vc-project-body {
  max-width: 760px;
}
.vc-project-body p,
.vc-project-body ul,
.vc-project-body ol {
  color: var(--text-mute);
  font-size: 18px;
}
.vc-project-body img,
.vc-project-body video,
.vc-project-body iframe {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.vc-project-body figure {
  margin: 34px 0;
}
.vc-project-body figcaption {
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 14px;
}
.vc-project-body .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0;
}
.vc-project-body .wp-block-gallery figure {
  margin: 0;
}
.vc-project-body .wp-block-video {
  margin: 34px 0;
}
.vc-project-body .wp-block-embed {
  margin: 34px 0;
}
.vc-project-body .wp-block-embed__wrapper {
  aspect-ratio: 16 / 9;
}
.vc-project-body .wp-block-embed__wrapper iframe {
  height: 100%;
}
.vc-project-body h2,
.vc-project-body h3 {
  margin-top: 34px;
}

.vc-contact { background: #07090c; }
.vc-contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: start; }
.vc-contact-links { margin-top: 24px; display: grid; gap: 12px; }
.vc-contact-links a { color: var(--blue-bright); font-weight: 800; }

.vc-form-card form { display: grid; gap: 14px; }
.vc-field label { display: block; color: var(--silver-2); font-size: 13px; font-weight: 800; margin-bottom: 6px; }
.vc-field input, .vc-field select, .vc-field textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: rgba(0,0,0,.38);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}
.vc-field textarea { min-height: 130px; resize: vertical; }
.vc-field input:focus, .vc-field select:focus, .vc-field textarea:focus { border-color: var(--blue-bright); box-shadow: 0 0 0 3px rgba(46,123,255,.16); }
.vc-form-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.vc-alert {
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(77,141,255,.35);
  background: rgba(46,123,255,.12);
  color: #dbe7ff;
}
.vc-alert-error { border-color: rgba(255,93,93,.4); background: rgba(255,93,93,.1); color: #ffd7d7; }

.vc-footer {
  border-top: 1px solid var(--border);
  padding: 30px 0;
  color: var(--text-dim);
  font-size: 14px;
}
.vc-footer-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.vc-footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.vc-footer-links a {
  color: var(--silver-2);
}
.vc-footer-links a:hover {
  color: var(--text);
}

.vc-page {
  min-height: 70vh;
  background: #07090c;
}
.vc-page-inner {
  max-width: 860px;
}
.vc-page-content {
  margin-top: 28px;
  color: var(--text-mute);
}
.vc-page-content p,
.vc-page-content ul,
.vc-page-content ol {
  font-size: 18px;
  color: var(--text-mute);
}
.vc-page-content h2,
.vc-page-content h3 {
  margin-top: 34px;
}
.vc-page-content a {
  color: var(--blue-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vc-reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.vc-reveal.vc-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 940px) {
  body.admin-bar .vc-nav { top: 46px; }
  .vc-nav-inner {
    height: auto;
    min-height: 66px;
    position: relative;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .vc-menu-toggle { display: inline-flex; }
  .vc-links {
    display: none;
    position: absolute;
    left: var(--gutter);
    right: var(--gutter);
    top: calc(100% - 4px);
    z-index: 60;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(9,11,14,.98);
    box-shadow: 0 18px 48px rgba(0,0,0,.45);
  }
  .vc-nav.vc-menu-open .vc-links {
    display: grid;
    gap: 6px;
  }
  .vc-links a {
    padding: 12px;
    border-radius: 10px;
  }
  .vc-links a:hover {
    background: rgba(255,255,255,.05);
  }
  .vc-mobile-only { display: block; }
  .vc-hero { min-height: auto; padding: 86px 0 64px; }
  .vc-hero-inner, .vc-reference-inner, .vc-contact-grid { grid-template-columns: 1fr; }
  .vc-grid-4, .vc-grid-3, .vc-steps, .vc-faq-wrap, .vc-project-grid, .vc-project-hero-inner { grid-template-columns: 1fr 1fr; }
  .vc-empty-projects { grid-template-columns: 1fr; }
  .vc-section { padding: 62px 0; }
}
@media (max-width: 640px) {
  .vc-nav-inner { min-height: 64px; }
  .vc-brand span { font-size: 13px; }
  .vc-nav .vc-btn { display: none; }
  .vc-grid-4, .vc-grid-3, .vc-steps, .vc-faq-wrap, .vc-form-row, .vc-project-grid, .vc-project-hero-inner { grid-template-columns: 1fr; }
  .vc-project-body .wp-block-gallery { grid-template-columns: 1fr; }
  .vc-hero-actions { flex-direction: column; }
  .vc-btn { width: 100%; }
  .vc-meta { display: grid; gap: 8px; }
  .vc-card, .vc-package, .vc-step, .vc-faq, .vc-form-card { padding: 22px; }
  .vc-section-head { margin-bottom: 30px; }
  h1 { font-size: clamp(34px, 12vw, 46px); }
  h2 { font-size: clamp(26px, 9vw, 34px); }
  .vc-logo-card { padding: 20px; }
  .vc-footer-inner { display: grid; gap: 10px; }
  .vc-page-content p,
  .vc-page-content ul,
  .vc-page-content ol,
  .vc-project-body p,
  .vc-project-body ul,
  .vc-project-body ol { font-size: 16px; }
}
