@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Lora:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  --brand-deep-indigo: #28288C;
  --brand-texas-sky: #5078B4;
  --brand-hill-sage: #8CA08C;
  --brand-parchment: #F7F6F0;
  --bg: #fafaf8;
  --bg-alt: #ffffff;
  --text: #0f0f12;
  --text-muted: #5c5c66;
  --border: #e8e6e0;
  --max: 1120px;
  --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.preview-banner {
  background: #1a1a5c;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preview-banner a {
  color: #a8c8f0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.v-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.v-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.logo-mark { width: 28px; height: 28px; flex-shrink: 0; }

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-wordmark-bluebonnet {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-deep-indigo);
}

.logo-wordmark-growth {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 400;
  color: var(--brand-texas-sky);
}

.v-nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.v-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}

.v-nav a:hover { color: var(--text); }

.v-nav a.is-active { color: var(--text); font-weight: 600; }

.v-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.v-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(40, 40, 140, 0.2);
}

.v-btn-primary {
  background: var(--brand-deep-indigo);
  color: #fff;
}

.v-btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}

.v-btn-outline:hover {
  background: var(--text);
  color: #fff;
}

/* Hide bar CTA on small screens; it belongs in the drawer */
.v-header-inner > a.v-btn {
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  margin-left: auto;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.v-drawer {
  display: none;
  border-top: 1px solid var(--border);
  padding: 8px 0 20px;
}

.v-drawer.is-open { display: block; }

.v-drawer a {
  display: block;
  padding: 14px 0;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.v-drawer a.v-btn {
  width: 100%;
  margin-top: 20px;
  border-bottom: none;
  color: #fff;
  text-align: center;
  padding: 14px 28px;
}

@media (min-width: 900px) {
  .v-header-inner {
    gap: 20px;
    padding: 18px 0;
  }

  .logo { flex: 0 1 auto; }

  .v-nav { display: flex; flex: 1; justify-content: center; }

  .v-header-inner > a.v-btn {
    display: inline-flex;
    flex-shrink: 0;
    white-space: nowrap;
    padding: 12px 22px;
    font-size: 0.88rem;
  }

  .nav-toggle { display: none; }
  .v-drawer { display: none !important; }
}

/* Hero */
.v-hero {
  padding: clamp(64px, 10vw, 120px) 0 clamp(72px, 12vw, 140px);
  text-align: center;
}

.v-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 22ch;
  margin: 0 auto 28px;
}

.v-hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.v-hero-tagline {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 600;
  margin: 0 auto 32px;
  max-width: 520px;
}

.v-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 16px;
}

.v-hero-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Trust bar */
.v-trust {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.v-trust-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.v-trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}

.v-trust-item {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  transition: color 0.15s, border-color 0.15s;
}

a.v-trust-item:hover {
  color: var(--brand-deep-indigo);
  border-color: var(--brand-deep-indigo);
}

/* Who this helps */
.v-helps {
  padding: clamp(64px, 10vw, 100px) 0;
}

.v-helps h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  max-width: 720px;
}

.v-helps p {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 20px;
  max-width: 720px;
}

.v-helps a {
  color: var(--brand-deep-indigo);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.v-helps-metaphor {
  font-family: 'Lora', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem) !important;
  font-style: italic;
  color: var(--text) !important;
  max-width: 640px !important;
}

/* Manifesto */
.v-manifesto {
  padding: clamp(80px, 12vw, 140px) 0;
  border-top: 1px solid var(--border);
}

.v-manifesto-inner {
  max-width: 720px;
  margin: 0;
  text-align: left;
}

.v-manifesto h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 48px;
}

.v-underline-not {
  text-decoration: underline;
  text-decoration-color: var(--brand-deep-indigo);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.v-manifesto p {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 28px;
}

.v-manifesto p strong {
  color: var(--text);
  font-weight: 700;
}

.v-manifesto .v-btn { margin-top: 20px; }

/* Pillars */
.v-pillars {
  padding: clamp(64px, 10vw, 100px) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.v-pillars-header {
  text-align: center;
  margin-bottom: 56px;
}

.v-pillars-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.v-pillars-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.v-pillar-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .v-pillar-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .v-pillar-grid { grid-template-columns: repeat(4, 1fr); }
}

.v-pillar {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}

.v-pillar-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand-texas-sky);
  margin-bottom: 16px;
}

.v-pillar h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.25;
}

.v-pillar p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Results */
.v-results {
  padding: clamp(80px, 12vw, 120px) 0;
}

.v-results-header {
  text-align: left;
  margin-bottom: 40px;
  max-width: 640px;
}

.v-results-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 12px;
}

.v-results-header p {
  color: var(--text-muted);
  margin: 0;
}

.v-results-featured {
  max-width: 800px;
}

.v-result-feature {
  display: grid;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  background: var(--bg-alt);
}

@media (min-width: 640px) {
  .v-result-feature {
    grid-template-columns: 140px 1fr;
  }
}

.v-result-logo-link {
  display: flex;
  justify-content: center;
}

.v-result-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
}

.v-result-industry {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-hill-sage);
  margin-bottom: 8px;
}

.v-result-feature h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.v-result-metric {
  font-weight: 600;
  color: var(--text);
  margin: 0 0 14px;
}

.v-result-feature-body p {
  color: var(--text-muted);
  margin: 0 0 12px;
  line-height: 1.65;
}

.v-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 8px !important;
}

.v-result-actions a {
  color: var(--brand-deep-indigo);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.v-results-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .v-results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .v-results-grid { grid-template-columns: repeat(3, 1fr); }
}

.v-result-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: var(--bg-alt);
  transition: box-shadow 0.2s;
}

.v-result-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.v-result-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.v-result-location {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.v-result-metric {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-deep-indigo);
  line-height: 1.5;
}

.v-result-placeholder {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 12px;
}

/* Compare */
.v-compare {
  padding: clamp(80px, 12vw, 120px) 0;
  background: var(--brand-deep-indigo);
  color: #fff;
}

.v-compare-inner {
  display: grid;
  gap: 48px;
  align-items: start;
}

@media (min-width: 900px) {
  .v-compare-inner { grid-template-columns: 1fr 1fr; }
}

.v-compare h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.v-compare-lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.v-compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.v-compare-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.v-compare-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(140, 160, 140, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Final CTA */
.v-cta {
  padding: clamp(80px, 12vw, 120px) 0;
  text-align: center;
}

.v-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
}

.v-cta p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

/* Inner pages */
.v-page-hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.v-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  line-height: 1.1;
}

.v-page-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

.v-content {
  padding: clamp(48px, 8vw, 80px) 0;
}

.v-prose {
  max-width: 680px;
  margin: 0 auto;
}

.v-prose h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 48px 0 16px;
  letter-spacing: -0.02em;
}

.v-prose h2:first-child { margin-top: 0; }

.v-prose p {
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 18px;
}

.v-prose ul {
  color: var(--text-muted);
  line-height: 1.75;
  padding-left: 1.2rem;
}

.v-card-grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .v-card-grid { grid-template-columns: repeat(2, 1fr); }
}

.v-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: var(--bg-alt);
}

.v-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.v-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.v-card a {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-deep-indigo);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* FAQ */
.v-faq { max-width: 720px; margin: 0 auto; }

.v-faq-item {
  border-bottom: 1px solid var(--border);
}

.v-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
}

.v-faq-a {
  display: none;
  padding: 0 0 24px;
  color: var(--text-muted);
  line-height: 1.7;
}

.v-faq-item.is-open .v-faq-a { display: block; }

.v-faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.v-faq-item.is-open .v-faq-icon { transform: rotate(45deg); }

/* Contact form mock */
.v-form {
  max-width: 520px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.v-form label {
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
}

.v-form input,
.v-form textarea,
.v-form select {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg-alt);
}

.v-form textarea { min-height: 120px; resize: vertical; }

/* Footer */
.v-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 40px;
  background: var(--bg-alt);
}

.v-footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .v-footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

.v-footer-brand p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 12px 0 0;
  max-width: 280px;
  line-height: 1.6;
}

.v-footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.v-footer-col a {
  display: block;
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 6px 0;
}

.v-footer-col a:hover { color: var(--text); }

.v-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
}

/* About */
.v-about-layout {
  display: grid;
  gap: 40px;
  align-items: start;
  max-width: 900px;
}
@media (min-width: 768px) {
  .v-about-layout { grid-template-columns: 280px 1fr; }
}
.v-about-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.v-about-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.v-prose-left { margin: 0; max-width: none; }
.v-prose a {
  color: var(--brand-deep-indigo);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.v-prose a.v-btn {
  text-decoration: none;
}

.v-prose a.v-btn-primary {
  color: #fff;
}

.v-prose a.v-btn-outline {
  color: var(--text);
}

.v-prose a.v-btn-outline:hover {
  color: #fff;
}
.v-prose ol { color: var(--text-muted); line-height: 1.75; padding-left: 1.2rem; }
.v-prose li { margin-bottom: 10px; }
.v-stat-row {
  display: grid;
  gap: 16px;
  margin: 32px 0;
}
@media (min-width: 640px) {
  .v-stat-row { grid-template-columns: repeat(3, 1fr); }
}
.v-stat {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--bg-alt);
}
.v-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.v-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.v-case-logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: contain;
  margin-bottom: 24px;
}
.v-industry-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.v-industry-links a {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
}
.v-industry-links a:hover {
  color: var(--brand-deep-indigo);
  border-color: var(--brand-deep-indigo);
}
.v-page-hero-left { text-align: left; }
.v-page-hero-left p { margin: 0; }

/* Contact form */
.v-contact-grid {
  display: grid;
  gap: 40px;
  align-items: start;
  max-width: 960px;
}
@media (min-width: 800px) {
  .v-contact-grid { grid-template-columns: 1fr 1fr; }
}
.v-contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: var(--bg-alt);
}
.v-contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.v-contact-form input,
.v-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  background: #fff;
}
.v-contact-form textarea { min-height: 96px; resize: vertical; }
.v-contact-form .v-btn { width: 100%; margin-top: 8px; border: none; cursor: pointer; }
