/* valuevynt.css — full site stylesheet */

/* =========================================================
   0. CSS VARIABLES
   ========================================================= */
:root {
  --pipeline-dark:       #0D1117;
  --pipeline-surface:    #161C26;
  --pipeline-elevated:   #1E2736;
  --pipeline-border:     #2A3548;

  --stage-light:         #F2F4F7;
  --stage-white:         #FFFFFF;
  --stage-border-light:  #D9DDE6;

  --commit-green:        #16A34A;
  --commit-green-hover:  #15803D;
  --commit-green-muted:  #D1FAE5;

  --risk-red:            #DC2626;
  --risk-red-muted:      #FEE2E2;

  --forecast-amber:      #D97706;
  --forecast-amber-muted:#FEF3C7;

  --signal-white:        #F1F5F9;
  --signal-muted:        #94A3B8;
  --text-primary-light:  #0F172A;
  --text-muted-light:    #475569;

  --nav-height:          64px;
  --container-max:       1200px;
  --section-py:          clamp(4rem, 8vw, 7rem);
  --gutter:              clamp(1rem, 3vw, 1.5rem);

  --radius-sm:           4px;
  --radius-md:           8px;
  --radius-lg:           12px;
  --radius-xl:           16px;

  --font-heading:        'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body:           'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:           'JetBrains Mono', 'Fira Code', monospace;

  --hero-display:        clamp(2.6rem, 5vw, 4.8rem);
  --h1:                  clamp(2.0rem, 3.5vw, 3.4rem);
  --h2:                  clamp(1.5rem, 2.5vw, 2.2rem);
  --h3:                  clamp(1.1rem, 1.6vw, 1.35rem);
  --body-lg:             1.125rem;
  --body:                1rem;
  --small:               0.875rem;
  --label:               0.75rem;
}

/* =========================================================
   1. RESET & BASE
   ========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--body);
  line-height: 1.65;
  background-color: var(--pipeline-dark);
  color: var(--signal-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 700;
}

/* =========================================================
   2. LAYOUT UTILITIES
   ========================================================= */
.vvy-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.vvy-section--dark {
  background-color: var(--pipeline-dark);
  color: var(--signal-white);
}

.vvy-section--dark-alt {
  background-color: var(--pipeline-surface);
  color: var(--signal-white);
}

.vvy-section--light {
  background-color: var(--stage-light);
  color: var(--text-primary-light);
}

.vvy-section--white {
  background-color: var(--stage-white);
  color: var(--text-primary-light);
}

.vvy-section-pad {
  padding-block: var(--section-py);
}

.vvy-section-label {
  font-family: var(--font-body);
  font-size: var(--label);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--commit-green);
  margin-bottom: 0.75rem;
  display: block;
}

.vvy-section-headline {
  font-size: var(--h2);
  font-weight: 700;
  margin-bottom: 1rem;
}

.vvy-section--dark .vvy-section-headline,
.vvy-section--dark-alt .vvy-section-headline {
  color: var(--signal-white);
}

.vvy-section--light .vvy-section-headline,
.vvy-section--white .vvy-section-headline {
  color: var(--text-primary-light);
}

.vvy-section-subhead {
  font-size: var(--body-lg);
  line-height: 1.7;
  max-width: 640px;
}

.vvy-section--dark .vvy-section-subhead,
.vvy-section--dark-alt .vvy-section-subhead {
  color: var(--signal-muted);
}

.vvy-section--light .vvy-section-subhead,
.vvy-section--white .vvy-section-subhead {
  color: var(--text-muted-light);
}

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

.vvy-text-center .vvy-section-subhead {
  margin-inline: auto;
}

/* =========================================================
   3. BUTTONS
   ========================================================= */
.vvy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--body);
  font-weight: 600;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.vvy-btn--primary {
  background-color: var(--commit-green);
  color: #fff;
  border: 2px solid var(--commit-green);
}

.vvy-btn--primary:hover {
  background-color: var(--commit-green-hover);
  border-color: var(--commit-green-hover);
  color: #fff;
}

.vvy-btn--ghost-dark {
  background-color: transparent;
  color: var(--signal-white);
  border: 2px solid var(--pipeline-border);
}

.vvy-btn--ghost-dark:hover {
  border-color: var(--signal-white);
  color: var(--signal-white);
}

.vvy-btn--ghost-light {
  background-color: transparent;
  color: var(--text-primary-light);
  border: 2px solid var(--stage-border-light);
}

.vvy-btn--ghost-light:hover {
  border-color: var(--text-primary-light);
  color: var(--text-primary-light);
}

.vvy-btn--outline-light {
  background-color: transparent;
  color: var(--commit-green);
  border: 2px solid var(--commit-green);
}

.vvy-btn--outline-light:hover {
  background-color: var(--commit-green);
  color: #fff;
}

.vvy-btn--sm {
  padding: 0.5rem 1rem;
  font-size: var(--small);
}

.vvy-btn--lg {
  padding: 0.875rem 2rem;
  font-size: 1.0625rem;
}

/* =========================================================
   4. NAV
   ========================================================= */
.vvy-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.vvy-page--dark-top .vvy-nav {
  background: transparent;
  border-bottom: 1px solid transparent;
}

.vvy-page--light-top .vvy-nav {
  background: var(--stage-white);
  border-bottom: 1px solid var(--stage-border-light);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.vvy-page--dark-top .vvy-nav.vvy-nav--scrolled {
  background: var(--pipeline-dark);
  border-bottom-color: var(--pipeline-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.vvy-page--light-top .vvy-nav.vvy-nav--scrolled {
  background: var(--stage-white);
  border-bottom-color: var(--stage-border-light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.vvy-nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.vvy-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.vvy-nav__logo img {
  height: 32px;
  width: auto;
}

.vvy-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
  list-style: none;
}

.vvy-nav__links .vvy-nav__link {
  font-size: var(--small);
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.vvy-page--dark-top .vvy-nav__link {
  color: var(--signal-white);
}

.vvy-page--dark-top .vvy-nav__link:hover {
  color: var(--commit-green);
  background: rgba(22, 163, 74, 0.08);
}

.vvy-page--light-top .vvy-nav__link {
  color: var(--text-primary-light);
}

.vvy-page--light-top .vvy-nav__link:hover {
  color: var(--commit-green);
  background: rgba(22, 163, 74, 0.06);
}

.vvy-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.vvy-nav__signin {
  font-size: var(--small);
  font-weight: 600;
  padding: 0.4rem 0.875rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.vvy-page--dark-top .vvy-nav__signin {
  color: var(--signal-white);
  border: 1px solid var(--pipeline-border);
}

.vvy-page--dark-top .vvy-nav__signin:hover {
  border-color: var(--signal-white);
  color: var(--signal-white);
}

.vvy-page--light-top .vvy-nav__signin {
  color: var(--text-primary-light);
  border: 1px solid var(--stage-border-light);
}

.vvy-page--light-top .vvy-nav__signin:hover {
  border-color: var(--text-primary-light);
  color: var(--text-primary-light);
}

.vvy-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.vvy-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.vvy-page--dark-top .vvy-nav__hamburger span {
  background: var(--signal-white);
}

.vvy-page--light-top .vvy-nav__hamburger span {
  background: var(--text-primary-light);
}

.vvy-nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.vvy-nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.vvy-nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .vvy-nav__links,
  .vvy-nav__actions {
    display: none;
  }

  .vvy-nav__hamburger {
    display: flex;
  }

  .vvy-nav.vvy-nav--mobile-open .vvy-nav__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    padding: 1.25rem var(--gutter) 0.75rem;
    z-index: 99;
  }

  .vvy-page--dark-top .vvy-nav.vvy-nav--mobile-open .vvy-nav__links {
    background: var(--pipeline-dark);
  }

  .vvy-page--light-top .vvy-nav.vvy-nav--mobile-open .vvy-nav__links {
    background: var(--stage-white);
  }

  .vvy-nav.vvy-nav--mobile-open .vvy-nav__links .vvy-nav__link {
    width: 100%;
    padding: 0.625rem 0.5rem;
  }

  .vvy-nav.vvy-nav--mobile-open .vvy-nav__actions {
    display: flex;
    position: fixed;
    top: calc(var(--nav-height) + 225px);
    left: 0;
    right: 0;
    padding: 0.75rem var(--gutter) 1.25rem;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 99;
    border-top: 1px solid transparent;
  }

  .vvy-page--dark-top .vvy-nav.vvy-nav--mobile-open .vvy-nav__actions {
    background: var(--pipeline-dark);
    border-top-color: var(--pipeline-border);
    border-bottom: 1px solid var(--pipeline-border);
  }

  .vvy-page--light-top .vvy-nav.vvy-nav--mobile-open .vvy-nav__actions {
    background: var(--stage-white);
    border-top-color: var(--stage-border-light);
    border-bottom: 1px solid var(--stage-border-light);
  }

  .vvy-nav.vvy-nav--mobile-open .vvy-nav__actions .vvy-btn {
    width: 100%;
    justify-content: center;
  }

  .vvy-nav.vvy-nav--mobile-open .vvy-nav__actions .vvy-nav__signin {
    text-align: center;
    width: 100%;
    padding: 0.625rem;
  }
}

/* =========================================================
   5. FOOTER
   ========================================================= */
.vvy-footer {
  background-color: var(--pipeline-dark);
  border-top: 1px solid var(--pipeline-border);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: 1.5rem;
}

.vvy-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.vvy-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vvy-footer__brand-logo {
  height: 30px;
  width: auto;
}

.vvy-footer__brand-desc {
  font-size: var(--small);
  color: var(--signal-muted);
  line-height: 1.65;
  max-width: 280px;
}

.vvy-footer__col-heading {
  font-family: var(--font-body);
  font-size: var(--small);
  font-weight: 600;
  color: var(--signal-white);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.vvy-footer__col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.vvy-footer__col-links li a {
  font-size: var(--small);
  color: var(--signal-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.vvy-footer__col-links li a:hover {
  color: var(--commit-green);
}

.vvy-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--pipeline-border);
}

.vvy-footer__copyright {
  font-size: var(--small);
  color: var(--signal-muted);
}

.vvy-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}

.vvy-footer__bottom-links li a {
  font-size: var(--small);
  color: var(--signal-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.vvy-footer__bottom-links li a:hover {
  color: var(--commit-green);
}

@media (max-width: 900px) {
  .vvy-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .vvy-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {
  .vvy-footer__grid {
    grid-template-columns: 1fr;
  }

  .vvy-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   6. PAGE PADDING (nav offset)
   ========================================================= */
.vvy-page-body {
  padding-top: var(--nav-height);
}

.vvy-page--dark-top .vvy-page-body {
  padding-top: 0;
}

/* =========================================================
   7. HERO — index.html
   ========================================================= */
#vvy-hero {
  background-color: var(--pipeline-surface);
  padding-top: calc(var(--nav-height) + clamp(3rem, 6vw, 5.5rem));
  padding-bottom: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  position: relative;
}

.vvy-hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vvy-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vvy-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--label);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--commit-green);
}

.vvy-hero__title {
  font-size: var(--hero-display);
  font-weight: 800;
  line-height: 1.05;
  color: var(--signal-white);
}

.vvy-hero__title em {
  font-style: normal;
  color: var(--commit-green);
}

.vvy-hero__subhead {
  font-size: var(--body-lg);
  color: var(--signal-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 500px;
}

.vvy-hero__ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.vvy-hero__media {
  position: relative;
}

@media (max-width: 900px) {
  .vvy-hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .vvy-hero__subhead {
    max-width: 100%;
  }
}

/* Pipeline dashboard mock */
.vvy-mock-dashboard {
  background: var(--pipeline-elevated);
  border: 1px solid var(--pipeline-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.vvy-mock-dashboard__header {
  background: var(--pipeline-dark);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--pipeline-border);
}

.vvy-mock-dashboard__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.vvy-mock-dashboard__dot--red   { background: var(--risk-red); }
.vvy-mock-dashboard__dot--amber { background: var(--forecast-amber); }
.vvy-mock-dashboard__dot--green { background: var(--commit-green); }

.vvy-mock-dashboard__title-bar {
  margin-left: 0.5rem;
  font-size: var(--label);
  color: var(--signal-muted);
  font-family: var(--font-mono);
}

.vvy-mock-pipeline-table {
  width: 100%;
  border-collapse: collapse;
}

.vvy-mock-pipeline-table th {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal-muted);
  padding: 0.625rem 0.875rem;
  text-align: left;
  border-bottom: 1px solid var(--pipeline-border);
  background: var(--pipeline-elevated);
}

.vvy-mock-pipeline-table td {
  font-size: var(--small);
  color: var(--signal-white);
  padding: 0.625rem 0.875rem;
  border-bottom: 1px solid rgba(42,53,72,0.5);
  white-space: nowrap;
}

.vvy-mock-pipeline-table tr:last-child td {
  border-bottom: none;
}

.vvy-mock-pipeline-table tr:hover td {
  background: rgba(30,39,54,0.6);
}

.vvy-mock__score {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
}

.vvy-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vvy-badge--commit {
  background: rgba(22,163,74,0.15);
  color: #4ade80;
  border: 1px solid rgba(22,163,74,0.3);
}

.vvy-badge--best-case {
  background: rgba(217,119,6,0.15);
  color: #fbbf24;
  border: 1px solid rgba(217,119,6,0.3);
}

.vvy-badge--at-risk {
  background: rgba(220,38,38,0.15);
  color: #f87171;
  border: 1px solid rgba(220,38,38,0.3);
}

/* =========================================================
   8. SIGNAL BAR SECTION
   ========================================================= */
#vvy-signal-bar {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.vvy-signal-bar__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.vvy-signal-bar__item {
  padding: 2rem clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  position: relative;
}

.vvy-signal-bar__item + .vvy-signal-bar__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--pipeline-border);
}

.vvy-signal-bar__number {
  font-family: var(--font-mono);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 500;
  color: var(--commit-green);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.vvy-signal-bar__label {
  font-size: var(--small);
  color: var(--signal-muted);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .vvy-signal-bar__grid {
    grid-template-columns: 1fr;
  }

  .vvy-signal-bar__item + .vvy-signal-bar__item::before {
    top: 0;
    bottom: auto;
    left: 20%;
    right: 20%;
    width: auto;
    height: 1px;
  }
}

/* =========================================================
   9. PROBLEM / COMPARISON SECTION
   ========================================================= */
#vvy-problem {
  padding-block: var(--section-py);
}

.vvy-problem__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.vvy-problem__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vvy-problem__stat {
  font-size: var(--h2);
  font-weight: 800;
  color: var(--risk-red);
  line-height: 1.15;
}

.vvy-problem__body {
  font-size: var(--body);
  color: var(--signal-muted);
  line-height: 1.75;
}

.vvy-crm-comparison {
  background: var(--pipeline-elevated);
  border: 1px solid var(--pipeline-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.vvy-crm-comparison__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--pipeline-border);
}

.vvy-crm-comparison__col-head {
  padding: 0.75rem 1rem;
  font-size: var(--label);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vvy-crm-comparison__col-head--crm {
  color: var(--signal-muted);
  border-right: 1px solid var(--pipeline-border);
  background: rgba(13,17,23,0.5);
}

.vvy-crm-comparison__col-head--vvy {
  color: var(--commit-green);
}

.vvy-crm-comparison__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(42,53,72,0.4);
}

.vvy-crm-comparison__row:last-child {
  border-bottom: none;
}

.vvy-crm-comparison__cell {
  padding: 0.875rem 1rem;
  font-size: var(--small);
}

.vvy-crm-comparison__cell--crm {
  color: var(--signal-muted);
  border-right: 1px solid var(--pipeline-border);
}

.vvy-crm-comparison__cell--vvy {
  color: var(--signal-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vvy-crm-comparison__deal {
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--signal-muted);
  font-family: var(--font-mono);
  display: block;
  margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
  .vvy-problem__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* =========================================================
   10. SIGNALS SECTION
   ========================================================= */
#vvy-signals {
  padding-block: var(--section-py);
}

.vvy-signals__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.vvy-signals__intro {
  max-width: 640px;
  margin-bottom: 3rem;
}

.vvy-signals__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.vvy-signal-category {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vvy-signal-category__heading {
  font-size: var(--body);
  font-weight: 700;
  color: var(--text-primary-light);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--commit-green);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.vvy-signal-category__count {
  font-family: var(--font-mono);
  font-size: var(--label);
  color: var(--commit-green);
  background: var(--commit-green-muted);
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-weight: 500;
}

.vvy-signal-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  list-style: none;
}

.vvy-signal-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.vvy-signal-list__name {
  font-size: var(--small);
  font-weight: 600;
  color: var(--text-primary-light);
}

.vvy-signal-list__desc {
  font-size: 0.8rem;
  color: var(--text-muted-light);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .vvy-signals__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   11. HOW IT WORKS BRIEF (index)
   ========================================================= */
#vvy-how-brief {
  padding-block: var(--section-py);
}

.vvy-how-brief__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.vvy-how-brief__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.vvy-how-brief__steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}

.vvy-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vvy-step__num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--commit-green);
  line-height: 1;
  opacity: 0.8;
}

.vvy-step__title {
  font-size: var(--h3);
  font-weight: 700;
  color: var(--signal-white);
}

.vvy-step__desc {
  font-size: var(--small);
  color: var(--signal-muted);
  line-height: 1.7;
  font-weight: 300;
}

.vvy-how-brief__footer {
  text-align: center;
  margin-top: 3rem;
}

.vvy-how-brief__link {
  color: var(--commit-green);
  font-weight: 600;
  font-size: var(--body);
  text-decoration: none;
  transition: color 0.2s ease;
}

.vvy-how-brief__link:hover {
  color: var(--commit-green-hover);
}

@media (max-width: 768px) {
  .vvy-how-brief__steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* =========================================================
   12. SOCIAL PROOF / TESTIMONIALS
   ========================================================= */
#vvy-social-proof,
.vvy-testimonials-section {
  padding-block: var(--section-py);
}

.vvy-proof-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.vvy-proof-cards--three {
  grid-template-columns: 1fr 1fr 1fr;
}

.vvy-quote-card {
  background: var(--stage-white);
  border: 1px solid var(--stage-border-light);
  border-left: 4px solid var(--commit-green);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vvy-quote-card__text {
  font-size: var(--body);
  color: var(--text-primary-light);
  line-height: 1.7;
  font-style: italic;
}

.vvy-quote-card__attribution {
  font-size: var(--small);
  color: var(--text-muted-light);
  font-weight: 500;
}

.vvy-quote-card__attribution strong {
  display: block;
  color: var(--text-primary-light);
  font-weight: 600;
}

@media (max-width: 900px) {
  .vvy-proof-cards--three {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .vvy-proof-cards,
  .vvy-proof-cards--three {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   13. BOTTOM CTA SECTION
   ========================================================= */
#vvy-cta-bottom,
.vvy-cta-section {
  padding-block: var(--section-py);
}

.vvy-cta__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.vvy-cta__title {
  font-size: var(--h1);
  font-weight: 800;
  color: var(--signal-white);
  max-width: 680px;
}

.vvy-cta__subhead {
  font-size: var(--body-lg);
  color: var(--signal-muted);
  max-width: 520px;
}

.vvy-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.vvy-cta__secondary-link {
  font-size: var(--body);
  color: var(--signal-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.vvy-cta__secondary-link:hover {
  color: var(--commit-green);
}

/* =========================================================
   14. PRODUCT PAGE
   ========================================================= */
#vvy-product-hero,
#vvy-hiw-hero,
#vvy-pricing-hero,
#vvy-customers-hero,
#vvy-about-hero,
#vvy-blog-hero,
#vvy-contact-hero {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.vvy-page-hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
  max-width: 760px;
}

.vvy-page-hero__inner--centered {
  text-align: center;
  margin-inline: auto;
}

.vvy-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--small);
  color: var(--signal-muted);
  margin-bottom: 1rem;
}

.vvy-breadcrumb a {
  color: var(--signal-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.vvy-breadcrumb a:hover {
  color: var(--commit-green);
}

.vvy-breadcrumb__sep {
  opacity: 0.4;
}

.vvy-page-hero__title {
  font-size: var(--h1);
  font-weight: 800;
  color: var(--signal-white);
  margin-bottom: 1.25rem;
}

.vvy-page-hero__title--light {
  color: var(--text-primary-light);
}

.vvy-page-hero__subhead {
  font-size: var(--body-lg);
  color: var(--signal-muted);
  line-height: 1.7;
  font-weight: 300;
}

.vvy-page-hero__subhead--light {
  color: var(--text-muted-light);
}

#vvy-product-hero,
#vvy-hiw-hero,
#vvy-customers-hero,
#vvy-about-hero {
  background-color: var(--pipeline-surface);
  padding-top: calc(var(--nav-height) + clamp(3rem, 6vw, 5rem));
}

#vvy-pricing-hero,
#vvy-blog-hero,
#vvy-contact-hero {
  background-color: var(--stage-light);
  padding-top: calc(var(--nav-height) + 2.5rem);
}

/* Visual anchor for sub-page heroes */
.vvy-page-hero__ornament {
  position: absolute;
  right: 0;
  top: 0;
  width: min(400px, 40vw);
  height: 100%;
  opacity: 0.04;
  pointer-events: none;
}

.vvy-page-hero--relative {
  position: relative;
  overflow: hidden;
}

/* Data fragment visual weight for sub-page heroes */
.vvy-hero-data-fragment {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  opacity: 0.35;
  pointer-events: none;
}

.vvy-hero-data-fragment__bar {
  height: 8px;
  background: var(--commit-green);
  border-radius: 2px;
}

.vvy-hero-data-fragment__bar:nth-child(2) { width: 75%; }
.vvy-hero-data-fragment__bar:nth-child(3) { width: 55%; }
.vvy-hero-data-fragment__bar:nth-child(4) { width: 88%; }
.vvy-hero-data-fragment__bar:nth-child(5) { width: 40%; }
.vvy-hero-data-fragment__bar:nth-child(6) { width: 68%; }

/* Product dashboard mock */
#vvy-product-dashboard {
  padding-block: var(--section-py);
}

.vvy-product-dash__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.vvy-product-dash__mock-wrap {
  position: relative;
  margin-top: 2rem;
}

.vvy-callout-annotation {
  position: absolute;
  background: var(--pipeline-dark);
  border: 1px solid var(--commit-green);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.75rem;
  font-size: 0.7rem;
  color: var(--signal-white);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.vvy-callout-annotation__label {
  color: var(--commit-green);
  font-weight: 600;
  display: block;
  margin-bottom: 0.15rem;
}

.vvy-callout-annotation::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--commit-green);
  border-radius: 50%;
}

/* Signal categories deep-dive */
#vvy-signal-categories {
  padding-block: var(--section-py);
}

.vvy-signal-cat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.vvy-signal-cat-card {
  background: var(--stage-white);
  border: 1px solid var(--stage-border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.vvy-signal-cat-card__icon {
  width: 42px;
  height: 42px;
  background: var(--commit-green-muted);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--commit-green);
  font-size: 1.125rem;
}

.vvy-signal-cat-card__title {
  font-size: var(--h3);
  font-weight: 700;
  color: var(--text-primary-light);
  margin-bottom: 0.35rem;
}

.vvy-signal-cat-card__count {
  font-family: var(--font-mono);
  font-size: var(--label);
  color: var(--commit-green);
  margin-bottom: 1rem;
}

.vvy-signal-cat-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vvy-signal-cat-card__list li {
  font-size: var(--small);
  color: var(--text-muted-light);
  padding-left: 1rem;
  position: relative;
}

.vvy-signal-cat-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--commit-green);
}

@media (max-width: 768px) {
  .vvy-signal-cat-cards {
    grid-template-columns: 1fr;
  }
}

/* Integrations section */
#vvy-integrations {
  padding-block: var(--section-py);
}

.vvy-integrations__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.vvy-integrations__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vvy-integrations__body {
  font-size: var(--body);
  color: var(--signal-muted);
  line-height: 1.75;
}

.vvy-integrations__note {
  font-size: var(--small);
  color: var(--signal-muted);
  font-style: italic;
}

.vvy-integrations__pills {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vvy-integration-pill {
  background: var(--pipeline-elevated);
  border: 1px solid var(--pipeline-border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.vvy-integration-pill__icon {
  width: 32px;
  height: 32px;
  background: var(--pipeline-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--label);
  color: var(--signal-muted);
  font-family: var(--font-mono);
  font-weight: 600;
}

.vvy-integration-pill__name {
  font-size: var(--body);
  font-weight: 600;
  color: var(--signal-white);
}

.vvy-integration-pill__badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--commit-green);
  background: rgba(22,163,74,0.1);
  border: 1px solid rgba(22,163,74,0.25);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .vvy-integrations__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* =========================================================
   15. HOW IT WORKS PAGE
   ========================================================= */
#vvy-hiw-steps {
  padding-block: var(--section-py);
}

.vvy-hiw-steps__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.vvy-hiw-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vvy-hiw-step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--pipeline-border);
  align-items: start;
}

.vvy-hiw-step:last-child {
  border-bottom: none;
}

.vvy-hiw-step__num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  color: var(--commit-green);
  font-weight: 400;
  opacity: 0.7;
  line-height: 1;
  padding-top: 0.25rem;
}

.vvy-hiw-step__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vvy-hiw-step__title {
  font-size: var(--h3);
  font-weight: 700;
  color: var(--signal-white);
}

.vvy-hiw-step__desc {
  font-size: var(--body);
  color: var(--signal-muted);
  line-height: 1.7;
  font-weight: 300;
}

.vvy-hiw-step__mock {
  background: var(--pipeline-elevated);
  border: 1px solid var(--pipeline-border);
  border-radius: var(--radius-md);
  padding: 1rem;
  font-size: var(--small);
  color: var(--signal-muted);
  font-family: var(--font-mono);
}

@media (max-width: 768px) {
  .vvy-hiw-step {
    grid-template-columns: 50px 1fr;
    gap: 1.25rem;
  }

  .vvy-hiw-step__mock {
    grid-column: 1 / -1;
  }
}

/* Privacy comparison table */
#vvy-hiw-privacy {
  padding-block: var(--section-py);
}

.vvy-privacy-table-wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.vvy-privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background: var(--stage-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--stage-border-light);
}

.vvy-privacy-table thead th {
  padding: 1rem 1.5rem;
  font-size: var(--small);
  font-weight: 700;
  text-align: left;
  border-bottom: 2px solid var(--stage-border-light);
}

.vvy-privacy-table thead th:first-child {
  color: var(--commit-green);
  background: var(--commit-green-muted);
}

.vvy-privacy-table thead th:last-child {
  color: var(--risk-red);
  background: var(--risk-red-muted);
}

.vvy-privacy-table tbody td {
  padding: 0.875rem 1.5rem;
  font-size: var(--small);
  color: var(--text-primary-light);
  border-bottom: 1px solid var(--stage-border-light);
}

.vvy-privacy-table tbody tr:last-child td {
  border-bottom: none;
}

.vvy-privacy-table tbody td:first-child {
  color: var(--commit-green);
  font-weight: 500;
}

/* Onboarding timeline */
#vvy-hiw-timeline {
  padding-block: var(--section-py);
}

.vvy-onboard-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  margin-top: 2.5rem;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.vvy-onboard-step {
  padding: 1.5rem;
  position: relative;
  border-right: 1px solid var(--pipeline-border);
}

.vvy-onboard-step:last-child {
  border-right: none;
}

.vvy-onboard-step__time {
  font-family: var(--font-mono);
  font-size: var(--small);
  color: var(--commit-green);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.vvy-onboard-step__title {
  font-size: var(--small);
  font-weight: 700;
  color: var(--signal-white);
  margin-bottom: 0.375rem;
}

.vvy-onboard-step__desc {
  font-size: 0.8rem;
  color: var(--signal-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .vvy-onboard-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .vvy-onboard-step {
    border-bottom: 1px solid var(--pipeline-border);
  }

  .vvy-onboard-step:nth-child(even) {
    border-right: none;
  }
}

/* =========================================================
   16. PRICING PAGE
   ========================================================= */
#vvy-pricing-tiers {
  padding-block: var(--section-py);
}

.vvy-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.vvy-pricing-card {
  background: var(--stage-white);
  border: 1px solid var(--stage-border-light);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: box-shadow 0.2s ease;
}

.vvy-pricing-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.vvy-pricing-card--featured {
  border-color: var(--commit-green);
  box-shadow: 0 8px 32px rgba(22,163,74,0.12);
}

.vvy-pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--commit-green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.875rem;
  border-radius: 99px;
  white-space: nowrap;
}

.vvy-pricing-card__tier {
  font-size: var(--small);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted-light);
}

.vvy-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.vvy-pricing-card__amount {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 500;
  color: var(--text-primary-light);
  line-height: 1;
}

.vvy-pricing-card__currency {
  font-size: 1.25rem;
  color: var(--text-muted-light);
  font-weight: 400;
  align-self: flex-start;
  padding-top: 0.5rem;
}

.vvy-pricing-card__period {
  font-size: var(--small);
  color: var(--text-muted-light);
}

.vvy-pricing-card__note {
  font-size: 0.8rem;
  color: var(--text-muted-light);
  margin-top: 0.25rem;
}

.vvy-pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.vvy-pricing-card__features li {
  font-size: var(--small);
  color: var(--text-muted-light);
  padding-left: 1.375rem;
  position: relative;
  line-height: 1.5;
}

.vvy-pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--commit-green);
}

.vvy-pricing-card__ideal {
  font-size: 0.8rem;
  color: var(--text-muted-light);
  font-style: italic;
  padding-top: 0.5rem;
  border-top: 1px solid var(--stage-border-light);
}

.vvy-pricing-card .vvy-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

@media (max-width: 900px) {
  .vvy-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* Pricing FAQ */
#vvy-pricing-faq {
  padding-block: var(--section-py);
}

.vvy-faq__inner {
  max-width: 760px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.vvy-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
  border: 1px solid var(--stage-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.vvy-faq-item:last-child {
  border-bottom: none;
}

.vvy-faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--stage-white);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease;
}

.vvy-faq-item__trigger:hover {
  background: var(--stage-light);
}

.vvy-faq-item__question {
  font-size: var(--body);
  font-weight: 600;
  color: var(--text-primary-light);
  line-height: 1.4;
  padding-right: 1rem;
}

.vvy-faq-item__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--stage-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, border-color 0.2s ease;
  color: var(--text-muted-light);
  font-size: 0.75rem;
}

.vvy-faq-item.is-open .vvy-faq-item__icon {
  transform: rotate(180deg);
  border-color: var(--commit-green);
  color: var(--commit-green);
}

.vvy-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--stage-white);
}

.vvy-faq-item.is-open .vvy-faq-item__answer {
  max-height: 400px;
}

.vvy-faq-item__answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: var(--small);
  color: var(--text-muted-light);
  line-height: 1.7;
}

/* =========================================================
   17. CUSTOMERS PAGE
   ========================================================= */
#vvy-customers-logo-bar {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.vvy-logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.vvy-logo-strip__item {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--signal-muted);
  letter-spacing: -0.02em;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.vvy-logo-strip__item:hover {
  opacity: 1;
}

.vvy-logo-strip__note {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: var(--signal-muted);
  opacity: 0.5;
  margin-top: 0.5rem;
}

/* Case studies */
#vvy-case-study-1,
#vvy-case-study-2 {
  padding-block: var(--section-py);
}

.vvy-case-study__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.vvy-case-study__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vvy-case-study__company {
  font-size: var(--label);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--commit-green);
}

.vvy-case-study__title {
  font-size: var(--h2);
  font-weight: 800;
  color: var(--text-primary-light);
}

.vvy-case-study__body {
  font-size: var(--body);
  color: var(--text-muted-light);
  line-height: 1.75;
}

.vvy-case-study__metrics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vvy-metric-callout {
  background: var(--stage-white);
  border: 1px solid var(--stage-border-light);
  border-left: 4px solid var(--commit-green);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}

.vvy-metric-callout__number {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--commit-green);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.vvy-metric-callout__label {
  font-size: var(--small);
  color: var(--text-muted-light);
}

@media (max-width: 768px) {
  .vvy-case-study__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* =========================================================
   18. ABOUT PAGE
   ========================================================= */
#vvy-about-story {
  padding-block: var(--section-py);
}

.vvy-about-story__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.vvy-pull-quote {
  border-left: 4px solid var(--commit-green);
  padding: 1.75rem 2rem;
  background: var(--pipeline-elevated);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin-bottom: 2.5rem;
}

.vvy-pull-quote__text {
  font-family: var(--font-heading);
  font-size: var(--h3);
  font-weight: 700;
  font-style: italic;
  color: var(--signal-white);
  line-height: 1.5;
  margin-bottom: 0.875rem;
}

.vvy-pull-quote__attribution {
  font-size: var(--small);
  color: var(--signal-muted);
  font-weight: 500;
}

.vvy-about-story__body {
  font-size: var(--body);
  color: var(--signal-muted);
  line-height: 1.85;
  max-width: 720px;
}

/* Team section */
#vvy-about-team {
  padding-block: var(--section-py);
}

.vvy-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.vvy-team-card {
  background: var(--stage-white);
  border: 1px solid var(--stage-border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.vvy-team-card__portrait {
  width: 100%;
  aspect-ratio: 5/6;
  object-fit: cover;
  object-position: top;
  display: block;
}

.vvy-team-card__letter-circle {
  width: 100%;
  aspect-ratio: 5/6;
  background: var(--pipeline-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--commit-green);
}

.vvy-team-card__info {
  padding: 1.5rem;
}

.vvy-team-card__name {
  font-size: var(--h3);
  font-weight: 700;
  color: var(--text-primary-light);
  margin-bottom: 0.25rem;
}

.vvy-team-card__title {
  font-size: var(--small);
  color: var(--commit-green);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.vvy-team-card__bio {
  font-size: var(--small);
  color: var(--text-muted-light);
  line-height: 1.65;
}

@media (max-width: 640px) {
  .vvy-team-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
}

/* Belief statements */
#vvy-about-beliefs {
  padding-block: var(--section-py);
}

.vvy-beliefs__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.vvy-beliefs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.vvy-belief {
  padding: 1.75rem;
  background: var(--pipeline-elevated);
  border: 1px solid var(--pipeline-border);
  border-radius: var(--radius-lg);
}

.vvy-belief__num {
  font-family: var(--font-mono);
  font-size: var(--label);
  color: var(--commit-green);
  margin-bottom: 0.75rem;
}

.vvy-belief__text {
  font-size: var(--body);
  color: var(--signal-white);
  line-height: 1.65;
  font-weight: 400;
}

@media (max-width: 640px) {
  .vvy-beliefs-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   19. BLOG PAGE
   ========================================================= */
#vvy-blog-grid {
  padding-block: var(--section-py);
}

.vvy-blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.vvy-blog-card {
  background: var(--stage-white);
  border: 1px solid var(--stage-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.vvy-blog-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.vvy-blog-card__cover {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.vvy-blog-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.vvy-blog-card__category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  display: inline-block;
}

.vvy-blog-card__category--revenue {
  background: var(--risk-red-muted);
  color: var(--risk-red);
}

.vvy-blog-card__category--signal {
  background: var(--commit-green-muted);
  color: var(--commit-green);
}

.vvy-blog-card__category--deal {
  background: var(--forecast-amber-muted);
  color: var(--forecast-amber);
}

.vvy-blog-card__category--forecast {
  background: var(--commit-green-muted);
  color: var(--commit-green);
}

.vvy-blog-card__category--company {
  background: var(--stage-light);
  color: var(--text-muted-light);
}

.vvy-blog-card__category--howto {
  background: var(--stage-light);
  color: var(--text-muted-light);
}

.vvy-blog-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary-light);
  line-height: 1.35;
}

.vvy-blog-card:hover .vvy-blog-card__title {
  color: var(--commit-green);
}

.vvy-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted-light);
  margin-top: auto;
  padding-top: 0.5rem;
}

.vvy-blog-card__summary {
  font-size: var(--small);
  color: var(--text-muted-light);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .vvy-blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .vvy-blog-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   20. BLOG ARTICLE PAGE
   ========================================================= */
.vvy-article-page {
  background: var(--stage-white);
}

#vvy-article-header {
  background: var(--stage-light);
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 2.5rem;
}

.vvy-article-header__inner {
  max-width: 760px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.vvy-article-header__category {
  font-size: var(--label);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--commit-green);
  display: block;
  margin-bottom: 1rem;
}

.vvy-article-header__title {
  font-size: var(--h1);
  font-weight: 800;
  color: var(--text-primary-light);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.vvy-article-header__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--small);
  color: var(--text-muted-light);
  flex-wrap: wrap;
}

.vvy-article-header__author {
  font-weight: 600;
  color: var(--text-primary-light);
}

#vvy-article-cover {
  background: var(--stage-white);
  padding-block: 2rem;
}

.vvy-article-cover-img-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.vvy-article-cover-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

#vvy-article-body {
  background: var(--stage-white);
  padding-block: 2.5rem 4rem;
}

.vvy-blog-article-body {
  max-width: 720px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  color: var(--text-primary-light);
}

.vvy-blog-article-body h2 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--text-primary-light);
  margin-top: 2.5em;
  margin-bottom: 0.875em;
}

.vvy-blog-article-body h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 700;
  color: var(--text-primary-light);
  margin-top: 2em;
  margin-bottom: 0.75em;
}

.vvy-blog-article-body p {
  font-size: var(--body);
  line-height: 1.8;
  color: var(--text-primary-light);
  margin-bottom: 1.25em;
}

.vvy-blog-article-body ul,
.vvy-blog-article-body ol {
  padding-left: 1.75em;
  margin-bottom: 1.25em;
  list-style: disc;
}

.vvy-blog-article-body ol {
  list-style: decimal;
}

.vvy-blog-article-body li {
  font-size: var(--body);
  color: var(--text-primary-light);
  line-height: 1.7;
  margin-bottom: 0.375em;
}

.vvy-blog-article-body blockquote {
  border-left: 4px solid var(--commit-green);
  padding: 1rem 1.5rem;
  margin: 2em 0;
  background: var(--stage-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-muted-light);
}

.vvy-blog-article-body pre {
  background: var(--pipeline-elevated);
  border: 1px solid var(--pipeline-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  overflow-x: auto;
  margin: 1.5em 0;
}

.vvy-blog-article-body code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  color: var(--signal-white);
}

.vvy-blog-article-body pre code {
  background: none;
  border: none;
  padding: 0;
}

.vvy-blog-article-body img {
  max-width: 100%;
  border-radius: var(--radius-md);
  margin: 1.5em 0;
  display: block;
}

#vvy-article-cta {
  background: var(--stage-light);
  padding-block: 2.5rem;
}

.vvy-article-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.vvy-article-cta-box {
  background: var(--pipeline-elevated);
  border: 1px solid var(--pipeline-border);
  border-left: 4px solid var(--commit-green);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.vvy-article-cta-box__text {
  font-size: var(--body);
  font-weight: 600;
  color: var(--signal-white);
}

/* =========================================================
   21. CONTACT PAGE
   ========================================================= */
#vvy-contact-hero {
  padding-block: var(--section-py);
}

.vvy-contact__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.vvy-contact__left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vvy-contact__heading {
  font-size: var(--h1);
  font-weight: 800;
  color: var(--text-primary-light);
}

.vvy-contact__detail {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.vvy-contact__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--body);
  color: var(--text-muted-light);
}

.vvy-contact__detail-item i {
  color: var(--commit-green);
  margin-top: 0.2rem;
  width: 16px;
  flex-shrink: 0;
}

.vvy-contact__detail-item a {
  color: var(--text-muted-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.vvy-contact__detail-item a:hover {
  color: var(--commit-green);
}

.vvy-contact-form {
  background: var(--stage-white);
  border: 1px solid var(--stage-border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.vvy-form-group {
  margin-bottom: 1.25rem;
}

.vvy-form-label {
  display: block;
  font-size: var(--small);
  font-weight: 600;
  color: var(--text-primary-light);
  margin-bottom: 0.4rem;
}

.vvy-form-input,
.vvy-form-textarea,
.vvy-form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--stage-light);
  border: 1px solid var(--stage-border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--body);
  color: var(--text-primary-light);
  transition: border-color 0.2s ease;
  appearance: none;
}

.vvy-form-input:focus,
.vvy-form-textarea:focus,
.vvy-form-select:focus {
  outline: none;
  border-color: var(--commit-green);
  background: var(--stage-white);
}

.vvy-form-textarea {
  min-height: 140px;
  resize: vertical;
}

@media (max-width: 768px) {
  .vvy-contact__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* =========================================================
   22. AUTH PAGES
   ========================================================= */
.vvy-auth-page {
  min-height: 100vh;
  background: var(--pipeline-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem var(--gutter);
}

.vvy-auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--pipeline-elevated);
  border: 1px solid var(--pipeline-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.vvy-auth-card__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.vvy-auth-card__logo img {
  height: 32px;
  width: auto;
}

.vvy-auth-card__heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--signal-white);
  text-align: center;
  margin-bottom: 0.5rem;
}

.vvy-auth-card__subhead {
  font-size: var(--small);
  color: var(--signal-muted);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.55;
}

.vvy-auth-form-group {
  margin-bottom: 1rem;
}

.vvy-auth-label {
  display: block;
  font-size: var(--small);
  font-weight: 600;
  color: var(--signal-white);
  margin-bottom: 0.4rem;
}

.vvy-auth-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--pipeline-dark);
  border: 1px solid var(--pipeline-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--body);
  color: var(--signal-white);
  transition: border-color 0.2s ease;
}

.vvy-auth-input:focus {
  outline: none;
  border-color: var(--commit-green);
}

.vvy-auth-input::placeholder {
  color: var(--signal-muted);
}

.vvy-auth-input[type="select"],
.vvy-auth-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.vvy-auth-forgot {
  display: block;
  text-align: right;
  font-size: var(--small);
  color: var(--signal-muted);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
}

.vvy-auth-forgot:hover {
  color: var(--commit-green);
}

.vvy-auth-submit {
  width: 100%;
  padding: 0.875rem;
  background: var(--commit-green);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--body);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 0.5rem;
}

.vvy-auth-submit:hover {
  background: var(--commit-green-hover);
}

.vvy-auth-footer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: var(--small);
  color: var(--signal-muted);
}

.vvy-auth-footer a {
  color: var(--commit-green);
  text-decoration: none;
  font-weight: 600;
}

.vvy-auth-footer a:hover {
  text-decoration: underline;
}

.vvy-auth-legal {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--signal-muted);
}

.vvy-auth-legal a {
  color: var(--signal-muted);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.vvy-auth-legal a:hover {
  color: var(--commit-green);
}

/* =========================================================
   23. LEGAL PAGES
   ========================================================= */
.vvy-legal-page {
  background: var(--stage-white);
}

.vvy-legal-hero {
  background: var(--stage-light);
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--stage-border-light);
}

.vvy-legal-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.vvy-legal-hero__title {
  font-size: var(--h1);
  font-weight: 800;
  color: var(--text-primary-light);
  margin-bottom: 0.5rem;
}

.vvy-legal-hero__meta {
  font-size: var(--small);
  color: var(--text-muted-light);
}

.vvy-legal-content {
  background: var(--stage-white);
}

.vvy-legal-content main {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem var(--gutter) 5rem;
  background: var(--stage-white);
  color: var(--text-primary-light);
}

.legal-article h1 {
  display: none;
}

.legal-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--stage-border-light);
}

.legal-meta {
  font-size: var(--small);
  color: var(--text-muted-light);
  margin-top: 0.4rem;
}

.legal-article h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary-light);
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
}

.legal-article h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary-light);
  margin-top: 1.75rem;
  margin-bottom: 0.625rem;
}

.legal-article p {
  font-size: var(--body);
  color: var(--text-primary-light);
  line-height: 1.75;
  margin-bottom: 1em;
}

.legal-article ul,
.legal-article ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
  list-style: disc;
}

.legal-article ol {
  list-style: decimal;
}

.legal-article li {
  font-size: var(--body);
  color: var(--text-primary-light);
  line-height: 1.7;
  margin-bottom: 0.375em;
}

.legal-article a {
  color: var(--commit-green);
  text-decoration: underline;
}

address {
  font-style: normal;
  line-height: 1.8;
  color: var(--text-muted-light);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: var(--small);
}

.legal-table th,
.legal-table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--stage-border-light);
  color: var(--text-primary-light);
  text-align: left;
}

.legal-table th {
  background: var(--stage-light);
  font-weight: 700;
}

/* =========================================================
   24. COOKIE BANNER
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--pipeline-dark);
  border-top: 1px solid var(--pipeline-border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: var(--small);
  color: var(--signal-muted);
  line-height: 1.55;
  min-width: 240px;
}

.cookie-banner__text a {
  color: var(--commit-green);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.5rem 1.25rem;
  font-size: var(--small);
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s ease, color 0.2s ease;
}

.cookie-banner__btn--primary {
  background: var(--commit-green);
  color: #fff;
  border: 2px solid var(--commit-green);
}

.cookie-banner__btn--primary:hover {
  background: var(--commit-green-hover);
  border-color: var(--commit-green-hover);
  color: #fff;
}

@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* =========================================================
   25. ANIMATION / INTERSECTION OBSERVER
   ========================================================= */
.vvy-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.vvy-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   26. UTILITY CLASSES
   ========================================================= */
.vvy-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.vvy-divider {
  border: none;
  border-top: 1px solid var(--pipeline-border);
  margin-block: 0;
}

.vvy-divider--light {
  border-top-color: var(--stage-border-light);
}

.vvy-product-cta,
#vvy-hiw-cta,
#vvy-about-cta,
#vvy-customers-cta,
#vvy-pricing-cta {
  padding-block: var(--section-py);
}

.vvy-auth-bg {
  display: none;
}

.vvy-auth-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem var(--gutter);
  width: 100%;
}

.vvy-auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  text-decoration: none;
}

.vvy-auth-logo img {
  height: 32px;
  width: auto;
}

.vvy-auth-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--signal-white);
  text-align: center;
  margin-bottom: 0.5rem;
}

.vvy-auth-card__sub {
  font-size: var(--small);
  color: var(--signal-muted);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.55;
}

.vvy-auth-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vvy-auth-form-footer-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.5rem;
}

.vvy-auth-link {
  color: var(--commit-green);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.vvy-auth-link:hover {
  text-decoration: underline;
}

.vvy-auth-link--muted {
  color: var(--signal-muted);
  font-weight: 400;
}

.vvy-auth-link--muted:hover {
  color: var(--commit-green);
}

.vvy-auth-card__legal {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--signal-muted);
  line-height: 1.55;
}
