:root {
  --vg-bg-dark: #07080a;
  --vg-surface: #111318;
  --vg-surface-hover: #1a1d24;
  --vg-neon-blue: #00e5ff;
  --vg-neon-purple: #b026ff;
  --vg-text-main: #f3f4f6;
  --vg-text-muted: #9ca3af;
  --vg-border: rgba(255, 255, 255, 0.08);
  --vg-font-sans: 'Space Grotesk', sans-serif;
  --vg-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--vg-font-sans);
  background-color: var(--vg-bg-dark);
  color: var(--vg-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.vg-fluid-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.vg-bounds {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 4vw;
}

/* Typography */
.vg-mega-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.vg-neon-text {
  background: linear-gradient(90deg, var(--vg-neon-blue), var(--vg-neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vg-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.vg-prose {
  font-size: 1.125rem;
  color: var(--vg-text-muted);
  margin-bottom: 2rem;
}

.vg-center-text {
  text-align: center;
}

.vg-measure-limit {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.vg-inline-link {
  color: var(--vg-neon-blue);
  text-decoration: none;
  border-bottom: 1px dashed var(--vg-neon-blue);
}

/* Header */
.vg-top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(7, 8, 10, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--vg-border);
  padding: 1.25rem 0;
}

.vg-flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vg-brand-mark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.vg-nav-cluster {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.vg-nav-link {
  color: var(--vg-text-main);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--vg-transition);
}

.vg-nav-link:hover {
  color: var(--vg-neon-blue);
}

.vg-nav-action {
  background: var(--vg-surface);
  color: var(--vg-text-main);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  border: 1px solid var(--vg-border);
  transition: var(--vg-transition);
}

.vg-nav-action:hover {
  border-color: var(--vg-neon-blue);
}

/* Buttons */
.vg-btn-primary {
  display: inline-block;
  background: var(--vg-text-main);
  color: var(--vg-bg-dark);
  padding: 1rem 2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--vg-transition);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.vg-btn-primary:hover {
  background: var(--vg-neon-blue);
  transform: translateY(-2px);
}

.vg-full-width {
  width: 100%;
}

/* Hero Splash */
.vg-hero-splash {
  position: relative;
  padding: 18vh 0 10vh;
  overflow: hidden;
}

.vg-abstract-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.4;
}

.vg-blob-1 {
  width: 40vw;
  height: 40vw;
  background: var(--vg-neon-purple);
  top: -10%;
  left: -10%;
}

.vg-blob-2 {
  width: 30vw;
  height: 30vw;
  background: var(--vg-neon-blue);
  bottom: 0;
  right: -5%;
}

.vg-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vg-hero-sub {
  font-size: 1.25rem;
  color: var(--vg-text-muted);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.vg-hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.vg-micro-trust {
  font-size: 0.85rem;
  color: var(--vg-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Firm Overview */
.vg-overview-segment {
  padding: 12vh 0;
  background: var(--vg-surface);
  border-top: 1px solid var(--vg-border);
}

.vg-overview-flex {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 5rem;
}

.vg-overview-img-wrap, .vg-overview-content {
  flex: 1;
}

.vg-stat-cluster {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--vg-border);
}

.vg-stat-node {
  display: flex;
  flex-direction: column;
}

.vg-counter-val {
  font-size: 3rem;
  font-weight: 700;
  color: var(--vg-neon-blue);
  line-height: 1;
}

.vg-stat-suffix {
  font-size: 2rem;
  font-weight: 700;
  color: var(--vg-neon-blue);
}

.vg-stat-label {
  font-size: 0.9rem;
  color: var(--vg-text-muted);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Protocol (Services) */
.vg-deep-dive {
  padding: 14vh 0;
}

.vg-protocol-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.vg-protocol-card {
  background: var(--vg-surface);
  border: 1px solid var(--vg-border);
  padding: 3rem;
  border-radius: 8px;
  transition: var(--vg-transition);
}

.vg-protocol-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  background: var(--vg-surface-hover);
}

.vg-card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--vg-text-main);
}

.vg-card-desc {
  color: var(--vg-text-muted);
}

.vg-span-full {
  grid-column: 1 / -1;
}

.vg-split-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Feedback */
.vg-praise-wall {
  padding: 10vh 0;
  background: var(--vg-surface);
}

.vg-feedback-masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.vg-testimonial-block {
  background: var(--vg-bg-dark);
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid var(--vg-border);
}

.vg-offset-mt {
  margin-top: 4rem;
}

.vg-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--vg-text-main);
  margin-bottom: 2rem;
}

.vg-author-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vg-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.vg-author-meta {
  display: flex;
  flex-direction: column;
}

.vg-author-name {
  font-weight: 700;
}

.vg-author-role {
  font-size: 0.85rem;
  color: var(--vg-text-muted);
}

/* FAQ */
.vg-query-zone {
  padding: 10vh 0;
}

.vg-accordion-wrap {
  max-width: 800px;
  margin: 3rem auto 0;
}

.vg-accordion-item {
  border-bottom: 1px solid var(--vg-border);
}

.vg-accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--vg-text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.vg-accordion-trigger::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--vg-neon-blue);
  transition: var(--vg-transition);
}

.vg-accordion-trigger.active::after {
  content: '−';
  transform: rotate(180deg);
}

.vg-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.vg-accordion-content p {
  padding-bottom: 1.5rem;
  color: var(--vg-text-muted);
}

/* Contact */
.vg-contact-terminal {
  padding: 12vh 0;
  background: var(--vg-surface);
  border-top: 1px solid var(--vg-border);
}

.vg-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.vg-contact-list {
  list-style: none;
  margin-top: 2rem;
}

.vg-contact-list li {
  margin-bottom: 1rem;
  color: var(--vg-text-muted);
}

.vg-contact-list strong {
  color: var(--vg-text-main);
}

.vg-form {
  background: var(--vg-bg-dark);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--vg-border);
}

.vg-input-group {
  margin-bottom: 1.5rem;
}

.vg-input-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--vg-text-muted);
}

.vg-input-group input,
.vg-input-group textarea {
  width: 100%;
  padding: 0.875rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--vg-border);
  border-radius: 4px;
  color: var(--vg-text-main);
  font-family: inherit;
  transition: var(--vg-transition);
}

.vg-input-group input:focus,
.vg-input-group textarea:focus {
  outline: none;
  border-color: var(--vg-neon-blue);
  background: rgba(0, 229, 255, 0.05);
}

.vg-tiny-disclaimer {
  font-size: 0.75rem;
  color: var(--vg-text-muted);
  margin-top: 1rem;
  text-align: center;
}

/* Footer */
.vg-base-plate {
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--vg-border);
}

.vg-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.vg-footer-desc {
  color: var(--vg-text-muted);
  margin-top: 1rem;
  max-width: 300px;
}

.vg-footer-title {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.vg-footer-links a {
  display: block;
  color: var(--vg-text-muted);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: var(--vg-transition);
}

.vg-footer-links a:hover {
  color: var(--vg-neon-blue);
}

.vg-copyright {
  text-align: center;
  color: var(--vg-text-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--vg-border);
  padding-top: 2rem;
}

/* Responsive Variations */
@media (max-width: 992px) {
  .vg-hero-grid,
  .vg-overview-flex,
  .vg-split-card,
  .vg-contact-layout {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 3rem;
  }
  
  .vg-nav-cluster {
    display: none; /* Simplified for realism, assume a hamburger exists in a full build */
  }

  .vg-feedback-masonry {
    grid-template-columns: 1fr;
  }

  .vg-offset-mt {
    margin-top: 0;
  }
}

@media (max-width: 650px) {
  .vg-protocol-grid {
    grid-template-columns: 1fr;
  }
  
  .vg-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vg-stat-cluster {
    flex-direction: column;
    gap: 1.5rem;
  }
}
