/*
Theme Name: Vital Web Studio
Theme URI: https://www.vitalwebstudio.com/
Author: Vital Web Studio
Author URI: https://www.vitalwebstudio.com/
Description: Conversion-focused WordPress theme for Vital Web Studio.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: vital-web-studio
*/

:root {
  --bg: #ffffff;
  --surface: #f9fafb;
  --text: #0b0f14;
  --muted: #6b7280;
  --muted-2: #9ca3af;
  --line: #e5e7eb;
  --accent: #14b8a6;
  --accent-2: #c026d3;
  --dark: #0b0f14;
  --shadow: 0 10px 30px rgba(0,0,0,0.05);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1100px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-main { display: block; }
.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section { padding: 100px 0; }
.section--light { background: var(--surface); }
.section--dark { background: var(--dark); color: white; }
.center { text-align: center; margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  color: var(--muted);
  background: white;
}

.section-title {
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.section-subtitle {
  font-size: 18px;
  line-height: 28px;
  color: var(--muted);
  max-width: 720px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 600;
  transition: 160ms ease;
  cursor: pointer;
}

.btn-primary, .wp-block-button__link, input[type="submit"], button, .button {
  background: linear-gradient(90deg, var(--accent-2), #a21caf);
  color: white;
  box-shadow: 0 12px 24px rgba(192,38,211,0.3);
  border: none;
}

.btn-primary:hover, .wp-block-button__link:hover, input[type="submit"]:hover, button:hover, .button:hover {
  filter: brightness(0.95);
}

.btn-secondary {
  background: white;
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover { background: var(--surface); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229,231,235,0.9);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  height: auto;
  display: flex;
  align-items: center;
}

.brand-mark img,
.brand-mark .custom-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 15px;
}

.nav-links .menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero { 
	padding: 120px 0 100px;
}
.hero-ca { 
	padding: 130px 0 140px;
	background-image: url(https://www.vitalwebstudio.com/wp-content/uploads/2026/05/vital_web_client_acquisition_image.webp);
	background-attachment: fixed;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.hero-h { 
	padding: 130px 0 140px;
	background-image: url(https://www.vitalwebstudio.com/wp-content/uploads/2026/05/vital_web_home_background.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.hero h1 {
  font-size: 56px;
  line-height: 64px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 620px;
}

.hero p {
  font-size: 18px;
  line-height: 28px;
  color: var(--muted);
  margin: 0;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-note {
  font-size: 14px;
  color: var(--muted);
}

.hero-visual {
  background: linear-gradient(135deg, rgba(20,184,166,0.15), rgba(192,38,211,0.15));
  border: 1px solid rgba(20,184,166,0.25);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 30px 70px rgba(20,184,166,0.15);
}

.mock-browser {
  background: white;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mock-topbar {
  height: 42px;
  border-bottom: 1px solid #eef2f7;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: #fcfdff;
}

.dot { width: 10px; height: 10px; border-radius: 50%; background: #d1d5db; }
.dot:first-child { background: #f87171; }
.dot:nth-child(2) { background: #fbbf24; }
.dot:nth-child(3) { background: #34d399; }

.mock-body {
  padding: 24px;
  display: grid;
  gap: 20px;
}

.mock-chip {
  width: 140px;
  height: 12px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
}

.mock-heading {
  width: 88%;
  height: 28px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 10px;
  opacity: 0.6;
}

.mock-lines { display: grid; gap: 10px; }
.mock-line {
  height: 12px;
  background: #e5e7eb;
  border-radius: 999px;
}
.mock-line.short { width: 72%; }

.mock-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  margin-top: 6px;
}

.mock-panel {
  min-height: 180px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 12px;
}

.mock-stat {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.mock-stat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.mock-stat strong {
  font-size: 22px;
  font-variant-numeric: tabular-nums;
}

.mock-stat-bar {
  width: 100%;
  height: 8px;
  background: #edf2f7;
  border-radius: 999px;
  overflow: hidden;
}

.mock-stat-fill {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 6px 16px rgba(192,38,211,0.18);
  transition: width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.mock-badge {
  font-size: 12px;
  color: #fff;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  padding: 6px 8px;
  border-radius: 999px;
  font-weight: 600;
}

.problem-grid,
.steps-grid {
  display: grid;
  gap: 32px;
}

.problem-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.animate-stagger .card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-stagger .card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.problem-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(20,184,166,0.15), rgba(192,38,211,0.15));
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 700;
}

.card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bullet-list,
.offer-list,
.outcome-list {
  list-style: none;
  padding: 0;
}

.bullet-list {
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.bullet-list li,
.offer-list li,
.outcome-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-size: 16px;
  line-height: 26px;
}

.check {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  margin-top: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(20,184,166,0.2), rgba(192,38,211,0.2));
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}

.wireframe {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  display: grid;
  gap: 16px;
  min-height: 420px;
}

.wire-columns {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.wire-box {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  min-height: 86px;
  padding: 16px;
}

.wire-box.tall { min-height: 210px; }
.wire-box.dark {
  background: linear-gradient(180deg, #111827, #0b0f14);
  color: white;
  border-color: rgba(255,255,255,0.05);
}

.steps-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}

.step-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(20,184,166,0.25);
}

.offer-wrap {
  max-width: 720px;
  margin: 48px auto 0;
}

.offer-card {
  padding: 40px;
  text-align: center;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 28px 0;
}

.offer-list { margin: 0; display: grid; gap: 12px; text-align: left; }
.price {
  margin-top: 28px;
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.price small {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: var(--muted);
}

.offer-card .btn {
  width: 100%;
  margin-top: 18px;
}

.outcomes-wrap {
  max-width: 820px;
  margin: 48px auto 0;
}

.outcome-list { margin: 0; display: grid; gap: 18px; }
.cta-panel {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.section--dark .section-subtitle,
.section--dark .trust-note {
  color: var(--muted-2);
}

.cta-panel .btn {
  margin-top: 28px;
  min-width: 240px;
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  background: white;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 960px) {
  .hero-grid,
  .solution-grid,
  .problem-grid,
  .steps-grid,
  .mock-layout,
  .wire-columns {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 88px 0 72px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 50px;
  }

  .section {
    padding: 72px 0;
  }

  .nav-links a:not(.btn) { display: none; }
}

@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 32px)); }
  .section-title { font-size: 30px; line-height: 38px; }
  .hero h1 { font-size: 36px; line-height: 42px; }
  .hero-copy { align-items: stretch; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn,
  .offer-card .btn,
  .cta-panel .btn,
  .nav-links .btn { width: 100%; }
  .site-header { height: auto; }
  .nav-inner { padding: 16px 0; flex-direction: column; align-items: stretch; }
  .nav-links { justify-content: space-between; }
  .card,
  .offer-card { padding: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}