/* cashvyne.css — Full site stylesheet */

/* ==========================================
   CSS CUSTOM PROPERTIES
   ========================================== */
:root {
  --base-navy: #0F1E35;
  --surface-navy: #162843;
  --border-navy: #1E3A55;
  --accent-green: #2D7D52;
  --accent-green-bright: #38A169;
  --accent-green-hover: #265F40;
  --accent-amber: #C97B2A;
  --text-on-dark-primary: #F0F4F8;
  --text-on-dark-muted: #8FA3BB;
  --text-on-dark-subtle: #5A7490;
  --text-on-light-primary: #0F1E35;
  --text-on-light-muted: #3D5A78;
  --text-on-light-subtle: #6B8BA4;
  --section-light: #F7F9FC;
  --section-white: #FFFFFF;
  --section-cream: #F0F4F0;
  --container-max: 1180px;
  --gutter: 24px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-card: 0 1px 4px rgba(15,30,53,0.08), 0 4px 16px rgba(15,30,53,0.06);
  --shadow-card-hover: 0 4px 12px rgba(15,30,53,0.12), 0 12px 32px rgba(15,30,53,0.10);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-on-light-primary);
  background: var(--section-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

address {
  font-style: normal;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
.cvy-display {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cvy-heading {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.cvy-subheading {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.4;
}

.cvy-mono {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-weight: 400;
}

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

.cvy-section {
  padding-block: 80px;
}

.cvy-section--dark {
  background: var(--base-navy);
  color: var(--text-on-dark-primary);
}

.cvy-section--surface {
  background: var(--surface-navy);
  color: var(--text-on-dark-primary);
}

.cvy-section--light {
  background: var(--section-light);
  color: var(--text-on-light-primary);
}

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

.cvy-section--cream {
  background: var(--section-cream);
  color: var(--text-on-light-primary);
}

.cvy-section--brand {
  background: var(--accent-green);
  color: var(--text-on-dark-primary);
}

.cvy-section-label {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-green-bright);
  margin-bottom: 12px;
}

.cvy-section--dark .cvy-section-label,
.cvy-section--surface .cvy-section-label {
  color: var(--accent-green-bright);
}

.cvy-section--light .cvy-section-label,
.cvy-section--white .cvy-section-label,
.cvy-section--cream .cvy-section-label {
  color: var(--accent-green);
}

.cvy-section-headline {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cvy-section--dark .cvy-section-headline,
.cvy-section--surface .cvy-section-headline {
  color: var(--text-on-dark-primary);
}

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

.cvy-section--brand .cvy-section-headline {
  color: var(--text-on-dark-primary);
}

.cvy-section-subhead {
  font-size: 1.125rem;
  line-height: 1.65;
  margin-top: 16px;
}

.cvy-section--dark .cvy-section-subhead,
.cvy-section--surface .cvy-section-subhead {
  color: var(--text-on-dark-muted);
}

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

.cvy-section--brand .cvy-section-subhead {
  color: rgba(240,244,248,0.85);
}

/* ==========================================
   BUTTONS
   ========================================== */
.cvy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 500;
  font-family: 'Inter', system-ui, sans-serif;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}

.cvy-btn:active {
  transform: translateY(1px);
}

.cvy-btn--primary {
  background: var(--accent-green);
  color: var(--text-on-dark-primary);
  border-color: var(--accent-green);
}

.cvy-btn--primary:hover {
  background: var(--accent-green-hover);
  border-color: var(--accent-green-hover);
  color: var(--text-on-dark-primary);
}

.cvy-btn--outline-dark {
  background: transparent;
  color: var(--text-on-light-primary);
  border-color: var(--text-on-light-primary);
}

.cvy-btn--outline-dark:hover {
  background: var(--text-on-light-primary);
  color: var(--section-white);
}

.cvy-btn--ghost-on-dark {
  background: transparent;
  color: var(--text-on-dark-primary);
  border-color: rgba(240,244,248,0.4);
}

.cvy-btn--ghost-on-dark:hover {
  background: rgba(240,244,248,0.08);
  border-color: var(--text-on-dark-primary);
  color: var(--text-on-dark-primary);
}

.cvy-btn--ghost-on-light {
  background: transparent;
  color: var(--accent-green);
  border-color: var(--accent-green);
}

.cvy-btn--ghost-on-light:hover {
  background: var(--accent-green);
  color: var(--text-on-dark-primary);
}

.cvy-btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.cvy-btn--sm {
  padding: 9px 18px;
  font-size: 0.875rem;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.cvy-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  background: transparent;
}

.cvy-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.cvy-nav__logo img {
  height: 28px;
  width: auto;
}

.cvy-nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.cvy-nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.cvy-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cvy-nav__signin {
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.cvy-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.cvy-nav__hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cvy-nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px var(--gutter) 20px;
  border-top: 1px solid rgba(240,244,248,0.1);
}

.cvy-nav__mobile-link {
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.15s ease;
}

.cvy-nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.cvy-nav--open .cvy-nav__mobile {
  display: flex;
}

.cvy-nav--open .cvy-nav__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.cvy-nav--open .cvy-nav__hamburger-line:nth-child(2) {
  opacity: 0;
}

.cvy-nav--open .cvy-nav__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================
   NAV THEME: DARK-TOP PAGES
   ========================================== */
.cvy-page--dark-top .cvy-nav {
  background: transparent;
}

.cvy-page--dark-top .cvy-nav__link {
  color: var(--text-on-dark-muted);
}

.cvy-page--dark-top .cvy-nav__link:hover {
  color: var(--text-on-dark-primary);
  background: rgba(240,244,248,0.08);
}

.cvy-page--dark-top .cvy-nav__signin {
  color: var(--text-on-dark-muted);
}

.cvy-page--dark-top .cvy-nav__signin:hover {
  color: var(--text-on-dark-primary);
  background: rgba(240,244,248,0.08);
}

.cvy-page--dark-top .cvy-nav__hamburger-line {
  background: var(--text-on-dark-primary);
}

.cvy-page--dark-top .cvy-nav__mobile {
  background: var(--surface-navy);
  border-top-color: var(--border-navy);
}

.cvy-page--dark-top .cvy-nav__mobile-link {
  color: var(--text-on-dark-muted);
}

.cvy-page--dark-top .cvy-nav__mobile-link:hover {
  color: var(--text-on-dark-primary);
  background: rgba(240,244,248,0.06);
}

.cvy-page--dark-top .cvy-nav--scrolled {
  background: var(--base-navy);
  box-shadow: 0 1px 0 var(--border-navy), 0 4px 16px rgba(0,0,0,0.3);
}

.cvy-page--dark-top .cvy-nav--scrolled .cvy-nav__link {
  color: var(--text-on-dark-muted);
}

.cvy-page--dark-top .cvy-nav--scrolled .cvy-nav__link:hover {
  color: var(--text-on-dark-primary);
}

.cvy-page--dark-top .cvy-nav--scrolled .cvy-nav__signin {
  color: var(--text-on-dark-muted);
}

/* ==========================================
   NAV THEME: LIGHT-TOP PAGES
   ========================================== */
.cvy-page--light-top .cvy-nav {
  background: var(--section-white);
  box-shadow: 0 1px 0 #E2EAF4;
}

.cvy-page--light-top .cvy-nav__link {
  color: var(--text-on-light-muted);
}

.cvy-page--light-top .cvy-nav__link:hover {
  color: var(--text-on-light-primary);
  background: var(--section-light);
}

.cvy-page--light-top .cvy-nav__signin {
  color: var(--text-on-light-muted);
}

.cvy-page--light-top .cvy-nav__signin:hover {
  color: var(--text-on-light-primary);
  background: var(--section-light);
}

.cvy-page--light-top .cvy-nav__hamburger-line {
  background: var(--text-on-light-primary);
}

.cvy-page--light-top .cvy-nav__mobile {
  background: var(--section-white);
  border-top-color: #E2EAF4;
}

.cvy-page--light-top .cvy-nav__mobile-link {
  color: var(--text-on-light-muted);
}

.cvy-page--light-top .cvy-nav__mobile-link:hover {
  color: var(--text-on-light-primary);
  background: var(--section-light);
}

.cvy-page--light-top .cvy-nav--scrolled {
  background: var(--section-white);
  box-shadow: 0 1px 0 #E2EAF4, 0 4px 12px rgba(15,30,53,0.06);
}

/* ==========================================
   HERO — INDEX
   ========================================== */
.cvy-hero {
  background: var(--base-navy);
  padding-top: 148px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.cvy-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.cvy-hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cvy-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent-green-bright);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cvy-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-green-bright);
  border-radius: 50%;
  animation: cvy-pulse 2s ease infinite;
}

@keyframes cvy-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.cvy-hero__headline {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text-on-dark-primary);
}

.cvy-hero__headline-accent {
  color: var(--accent-green-bright);
}

.cvy-hero__subhead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-on-dark-muted);
  max-width: 520px;
}

.cvy-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.cvy-hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px var(--border-navy);
}

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

.cvy-hero__bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: linear-gradient(var(--border-navy) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-navy) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* ==========================================
   LOGO CLOUD
   ========================================== */
.cvy-logo-cloud {
  background: var(--surface-navy);
  padding-block: 40px;
  border-top: 1px solid var(--border-navy);
  border-bottom: 1px solid var(--border-navy);
}

.cvy-logo-cloud__label {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-on-dark-subtle);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'IBM Plex Mono', monospace;
  margin-bottom: 28px;
}

.cvy-logo-cloud__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.cvy-logo-cloud__item {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-on-dark-subtle);
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.cvy-logo-cloud__item:hover {
  color: var(--text-on-dark-muted);
}

/* ==========================================
   PROBLEM SECTION
   ========================================== */
.cvy-problem {
  background: var(--section-light);
}

.cvy-problem__intro {
  text-align: center;
  margin-bottom: 56px;
}

.cvy-problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.cvy-problem__col-status,
.cvy-problem__col-cost {
  display: flex;
  flex-direction: column;
}

.cvy-problem__col-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cvy-problem__col--status .cvy-problem__col-label,
.cvy-problem__col-status .cvy-problem__col-label {
  color: var(--text-on-light-subtle);
}

.cvy-problem__col--cost .cvy-problem__col-label,
.cvy-problem__col-cost .cvy-problem__col-label {
  color: var(--accent-amber);
}

.cvy-problem__flow {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cvy-problem__flow-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--section-white);
  border-radius: var(--radius-md);
  border: 1px solid #E2EAF4;
}

.cvy-problem__flow-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: var(--section-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-light-subtle);
}

.cvy-problem__flow-text {
  font-size: 0.9375rem;
  color: var(--text-on-light-muted);
  line-height: 1.5;
}

.cvy-problem__metric-card {
  padding: 28px;
  background: var(--section-white);
  border-radius: var(--radius-lg);
  border: 1px solid #E2EAF4;
  margin-bottom: 16px;
}

.cvy-problem__metric-card:last-child {
  margin-bottom: 0;
}

.cvy-problem__metric-number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--accent-amber);
  line-height: 1;
  margin-bottom: 8px;
}

.cvy-problem__metric-desc {
  font-size: 0.9375rem;
  color: var(--text-on-light-muted);
  line-height: 1.5;
}

/* ==========================================
   SOLUTION SECTION
   ========================================== */
.cvy-solution {
  background: var(--base-navy);
}

.cvy-solution__intro {
  text-align: center;
  margin-bottom: 56px;
}

.cvy-solution__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cvy-solution-card {
  background: var(--surface-navy);
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.cvy-solution-card:hover {
  border-color: var(--accent-green);
  transform: translateY(-2px);
}

.cvy-solution-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--accent-green-bright);
}

.cvy-solution-card__metric {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.75rem;
  color: var(--accent-green-bright);
  line-height: 1;
}

.cvy-solution-card__title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-on-dark-primary);
  line-height: 1.3;
}

.cvy-solution-card__body {
  font-size: 0.9375rem;
  color: var(--text-on-dark-muted);
  line-height: 1.65;
}

/* ==========================================
   PRODUCT WALKTHROUGH
   ========================================== */
.cvy-walkthrough {
  background: var(--section-light);
}

.cvy-walkthrough__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-block: 48px;
}

.cvy-walkthrough__panel + .cvy-walkthrough__panel {
  border-top: 1px solid #E2EAF4;
}

.cvy-walkthrough__panel--reverse {
  direction: rtl;
}

.cvy-walkthrough__panel--reverse > * {
  direction: ltr;
}

.cvy-walkthrough__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cvy-walkthrough__headline {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  color: var(--text-on-light-primary);
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.cvy-walkthrough__body {
  font-size: 1rem;
  color: var(--text-on-light-muted);
  line-height: 1.7;
}

.cvy-walkthrough__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid #E2EAF4;
}

.cvy-walkthrough__media img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   METRICS BAR
   ========================================== */
.cvy-metrics {
  background: var(--accent-green);
  padding-block: 64px;
}

.cvy-metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.cvy-metrics__stat {
  text-align: center;
  padding: 24px 20px;
  position: relative;
}

.cvy-metrics__stat + .cvy-metrics__stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(240,244,248,0.25);
}

.cvy-metrics__number {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-on-dark-primary);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.cvy-metrics__unit {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.125rem;
}

.cvy-metrics__label {
  font-size: 0.875rem;
  color: rgba(240,244,248,0.8);
  line-height: 1.45;
  max-width: 160px;
  margin-inline: auto;
}

.cvy-metrics__source {
  text-align: center;
  margin-top: 32px;
  font-size: 0.75rem;
  font-family: 'IBM Plex Mono', monospace;
  color: rgba(240,244,248,0.55);
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.cvy-testimonials {
  background: var(--section-white);
}

.cvy-testimonials__intro {
  text-align: center;
  margin-bottom: 48px;
}

.cvy-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.cvy-testimonial-card {
  background: var(--section-white);
  border: 1px solid #E2EAF4;
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.2s ease;
}

.cvy-testimonial-card:hover {
  box-shadow: var(--shadow-card);
}

.cvy-testimonial-card__quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-on-light-primary);
  font-style: italic;
}

.cvy-testimonial-card__quote::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 2rem;
  color: var(--accent-green);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
}

.cvy-testimonial-card__attribution {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cvy-testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--base-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-on-dark-primary);
  flex-shrink: 0;
}

.cvy-testimonial-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-on-light-primary);
  line-height: 1.3;
}

.cvy-testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--text-on-light-subtle);
  line-height: 1.3;
  margin-top: 2px;
}

/* ==========================================
   CTA BANNER
   ========================================== */
.cvy-cta-banner {
  background: var(--base-navy);
  position: relative;
  overflow: hidden;
}

.cvy-cta-banner__content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cvy-cta-banner__headline {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: var(--text-on-dark-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.cvy-cta-banner__subtext {
  font-size: 1rem;
  color: var(--text-on-dark-muted);
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.65;
  margin-bottom: 36px;
}

.cvy-cta-banner__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 24px,
      rgba(30,58,85,0.5) 24px,
      rgba(30,58,85,0.5) 25px
    );
  opacity: 0.4;
  pointer-events: none;
}

/* ==========================================
   FOOTER
   ========================================== */
.cvy-footer {
  background: var(--base-navy);
  padding-block: 64px 32px;
  border-top: 1px solid var(--border-navy);
  color: var(--text-on-dark-primary);
}

.cvy-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.cvy-footer__col-heading {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-on-dark-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cvy-footer__brand-logo {
  display: block;
  margin-bottom: 16px;
}

.cvy-footer__brand-logo img {
  height: 24px;
  width: auto;
}

.cvy-footer__tagline {
  font-size: 0.9375rem;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cvy-footer__contact-item {
  font-size: 0.875rem;
  color: var(--text-on-dark-subtle);
  line-height: 1.7;
  display: flex;
  gap: 8px;
}

.cvy-footer__contact-item a {
  color: var(--text-on-dark-subtle);
  text-decoration: none;
  transition: color 0.15s ease;
}

.cvy-footer__contact-item a:hover {
  color: var(--text-on-dark-muted);
}

.cvy-footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.cvy-footer__link {
  font-size: 0.9375rem;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: color 0.15s ease;
  display: inline-block;
}

.cvy-footer__link:hover {
  color: var(--text-on-dark-primary);
}

.cvy-footer__bottom {
  border-top: 1px solid var(--border-navy);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.cvy-footer__copyright {
  font-size: 0.8125rem;
  color: var(--text-on-dark-subtle);
}

.cvy-footer__legal-links {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
}

.cvy-footer__legal-link {
  font-size: 0.8125rem;
  color: var(--text-on-dark-subtle);
  text-decoration: none;
  transition: color 0.15s ease;
}

.cvy-footer__legal-link:hover {
  color: var(--text-on-dark-muted);
}

/* ==========================================
   PRODUCT PAGE
   ========================================== */
.cvy-product-hero {
  background: var(--base-navy);
  padding-top: 148px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.cvy-product-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.cvy-product-hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cvy-product-hero__headline {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--text-on-dark-primary);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.cvy-product-hero__subhead {
  font-size: 1.0625rem;
  color: var(--text-on-dark-muted);
  line-height: 1.7;
}

.cvy-product-hero__diagram {
  background: var(--surface-navy);
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.cvy-capabilities {
  background: var(--section-light);
}

.cvy-capabilities__intro {
  text-align: center;
  margin-bottom: 48px;
}

.cvy-capabilities__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.cvy-capability-card {
  background: var(--section-white);
  border: 1px solid #E2EAF4;
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s ease;
}

.cvy-capability-card:hover {
  box-shadow: var(--shadow-card);
}

.cvy-capability-card__title {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-on-light-primary);
}

.cvy-capability-card__body {
  font-size: 0.9375rem;
  color: var(--text-on-light-muted);
  line-height: 1.65;
}

.cvy-capability-card__metric {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.25rem;
  color: var(--accent-green);
  margin-top: 4px;
}

.cvy-integrations {
  background: var(--section-white);
}

.cvy-integrations__intro {
  text-align: center;
  margin-bottom: 40px;
}

.cvy-integrations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 720px;
  margin-inline: auto;
}

.cvy-integration-tile {
  background: var(--section-white);
  border: 1px solid #E2EAF4;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-on-light-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cvy-integration-tile:hover {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 1px var(--accent-green);
}

.cvy-integration-tile--note {
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--text-on-light-subtle);
  font-family: 'Inter', system-ui, sans-serif;
  grid-column: span 3;
  text-align: center;
  border: none;
  padding: 8px;
}

.cvy-product-cta {
  background: var(--base-navy);
  text-align: center;
}

/* ==========================================
   HOW IT WORKS PAGE
   ========================================== */
.cvy-hiw-hero {
  background: var(--section-light);
  padding-top: 148px;
  padding-bottom: 80px;
}

.cvy-hiw-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.cvy-hiw-hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cvy-hiw-hero__headline {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--text-on-light-primary);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.cvy-hiw-hero__subhead {
  font-size: 1.0625rem;
  color: var(--text-on-light-muted);
  line-height: 1.7;
}

.cvy-hiw-hero__diagram {
  background: var(--section-white);
  border: 1px solid #E2EAF4;
  border-radius: var(--radius-lg);
  padding: 32px;
}

.cvy-hiw-steps {
  background: var(--section-light);
  padding-top: 0;
}

.cvy-hiw-steps__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: hiw-step;
}

.cvy-hiw-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  padding-block: 40px;
  border-bottom: 1px solid #E2EAF4;
  align-items: start;
}

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

.cvy-hiw-step__number {
  width: 52px;
  height: 52px;
  background: var(--accent-green);
  color: var(--text-on-dark-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.25rem;
  font-weight: 400;
  flex-shrink: 0;
}

.cvy-hiw-step__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cvy-hiw-step__title {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-on-light-primary);
  line-height: 1.25;
}

.cvy-hiw-step__body {
  font-size: 0.9375rem;
  color: var(--text-on-light-muted);
  line-height: 1.65;
}

.cvy-hiw-step__callout {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  color: var(--accent-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cvy-hiw-timeline-section {
  background: var(--base-navy);
}

.cvy-hiw-timeline {
  margin-top: 40px;
  position: relative;
}

.cvy-hiw-timeline__track {
  position: absolute;
  top: 20px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--border-navy);
}

.cvy-hiw-timeline__track-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-green-bright));
}

.cvy-hiw-timeline__nodes {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}

.cvy-hiw-timeline__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cvy-hiw-timeline__dot {
  width: 20px;
  height: 20px;
  background: var(--accent-green);
  border-radius: 50%;
  border: 3px solid var(--base-navy);
  box-shadow: 0 0 0 2px var(--accent-green);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.cvy-hiw-timeline__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  color: var(--accent-green-bright);
  text-align: center;
  line-height: 1.2;
  font-weight: 400;
}

.cvy-hiw-timeline__desc {
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
  text-align: center;
  line-height: 1.45;
}

.cvy-hiw-cta {
  background: var(--section-light);
  text-align: center;
}

/* ==========================================
   PRICING PAGE
   ========================================== */
.cvy-pricing-hero {
  background: var(--section-light);
  padding-top: 148px;
  padding-bottom: 56px;
  text-align: center;
}

.cvy-pricing-hero__headline {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: var(--text-on-light-primary);
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 16px;
}

.cvy-pricing-hero__subhead {
  font-size: 1.0625rem;
  color: var(--text-on-light-muted);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.65;
  margin-bottom: 32px;
}

.cvy-pricing-toggle {
  display: inline-flex;
  background: #E2EAF4;
  border-radius: 40px;
  padding: 4px;
  gap: 2px;
}

.cvy-pricing-toggle__btn {
  padding: 8px 22px;
  border-radius: 36px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-on-light-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.cvy-pricing-toggle__btn--active {
  background: var(--section-white);
  color: var(--text-on-light-primary);
  box-shadow: 0 1px 3px rgba(15,30,53,0.1);
}

.cvy-pricing-tiers {
  background: var(--section-white);
}

.cvy-pricing-tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.cvy-pricing-card {
  background: var(--section-white);
  border: 1px solid #E2EAF4;
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.cvy-pricing-card--featured {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 1px var(--accent-green), var(--shadow-card-hover);
}

.cvy-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-green);
  color: var(--text-on-dark-primary);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.cvy-pricing-card__name {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-on-light-primary);
}

.cvy-pricing-card__price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  line-height: 1;
}

.cvy-pricing-card__amount {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: 2.75rem;
  color: var(--text-on-light-primary);
  letter-spacing: -0.025em;
}

.cvy-pricing-card__period {
  font-size: 0.875rem;
  color: var(--text-on-light-subtle);
  margin-bottom: 6px;
}

.cvy-pricing-card__savings {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent-green);
  display: none;
}

.cvy-pricing-card__savings--show {
  display: block;
}

.cvy-pricing-card__cap {
  font-size: 0.875rem;
  color: var(--text-on-light-subtle);
}

.cvy-pricing-card__ideal {
  font-size: 0.8125rem;
  color: var(--text-on-light-muted);
  font-style: italic;
}

.cvy-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.cvy-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-on-light-muted);
  line-height: 1.5;
}

.cvy-pricing-card__feature i {
  color: var(--accent-green);
  font-size: 0.875rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.cvy-pricing-cta {
  background: var(--base-navy);
  text-align: center;
}

.cvy-pricing-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cvy-pricing-cta__note {
  font-size: 0.875rem;
  color: var(--text-on-dark-subtle);
  margin-top: 16px;
}

/* ==========================================
   FAQ
   ========================================== */
.cvy-faq {
  background: var(--section-light);
}

.cvy-faq__intro {
  text-align: center;
  margin-bottom: 48px;
}

.cvy-faq__list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cvy-faq__item {
  background: var(--section-white);
  border: 1px solid #E2EAF4;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cvy-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-on-light-primary);
  transition: background 0.15s ease;
}

.cvy-faq__question:hover {
  background: var(--section-light);
}

.cvy-faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--accent-green);
  transition: transform 0.2s ease;
}

.cvy-faq__item--open .cvy-faq__icon {
  transform: rotate(45deg);
}

.cvy-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s ease;
}

.cvy-faq__item--open .cvy-faq__answer {
  max-height: 400px;
}

.cvy-faq__answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--text-on-light-muted);
  line-height: 1.7;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */
.cvy-about-hero {
  background: var(--section-light);
  padding-top: 148px;
  padding-bottom: 64px;
  text-align: center;
}

.cvy-about-hero__headline {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--text-on-light-primary);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 760px;
  margin-inline: auto;
}

.cvy-about-hero__subhead {
  font-size: 1.125rem;
  color: var(--text-on-light-muted);
  line-height: 1.7;
  max-width: 580px;
  margin-inline: auto;
}

.cvy-about-story {
  background: var(--section-white);
}

.cvy-about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.cvy-about-story__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
}

.cvy-about-story__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}

.cvy-about-story__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cvy-about-story__name {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--text-on-light-primary);
}

.cvy-about-story__title {
  font-size: 0.875rem;
  color: var(--accent-green);
  font-family: 'IBM Plex Mono', monospace;
  margin-top: -12px;
}

.cvy-about-story__bio {
  font-size: 0.9375rem;
  color: var(--text-on-light-muted);
  line-height: 1.75;
}

.cvy-about-story__pullquote {
  border-left: 3px solid var(--accent-green);
  padding-left: 20px;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-on-light-primary);
  line-height: 1.65;
}

.cvy-about-story__quote-attr {
  display: block;
  font-style: normal;
  font-size: 0.8125rem;
  color: var(--text-on-light-subtle);
  margin-top: 8px;
  font-family: 'IBM Plex Mono', monospace;
}

.cvy-about-values {
  background: var(--base-navy);
}

.cvy-about-values__intro {
  margin-bottom: 48px;
}

.cvy-about-values__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cvy-value-block {
  border-left: 3px solid var(--accent-green);
  padding-left: 28px;
}

.cvy-value-block__number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-on-dark-subtle);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cvy-value-block__title {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-on-dark-primary);
  margin-bottom: 10px;
}

.cvy-value-block__body {
  font-size: 0.9375rem;
  color: var(--text-on-dark-muted);
  line-height: 1.7;
}

.cvy-about-location {
  background: var(--section-light);
}

.cvy-about-location__content {
  max-width: 560px;
}

.cvy-about-location__headline {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text-on-light-primary);
  margin-bottom: 20px;
}

.cvy-about-location__detail {
  font-size: 0.9375rem;
  color: var(--text-on-light-muted);
  line-height: 2;
}

.cvy-about-location__detail a {
  color: var(--accent-green);
  text-decoration: none;
  transition: color 0.15s ease;
}

.cvy-about-location__detail a:hover {
  color: var(--accent-green-hover);
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.cvy-contact {
  background: var(--section-light);
  padding-top: 148px;
}

.cvy-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.cvy-contact__headline {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text-on-light-primary);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.cvy-contact__subhead {
  font-size: 1rem;
  color: var(--text-on-light-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

.cvy-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cvy-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cvy-form__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-on-light-primary);
}

.cvy-form__input,
.cvy-form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D0DCE8;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-on-light-primary);
  background: var(--section-white);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cvy-form__input:focus,
.cvy-form__textarea:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(45,125,82,0.12);
}

.cvy-form__input::placeholder,
.cvy-form__textarea::placeholder {
  color: var(--text-on-light-subtle);
}

.cvy-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.cvy-contact__info-block {
  background: var(--section-white);
  border: 1px solid #E2EAF4;
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cvy-contact__info-headline {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-on-light-primary);
  margin-bottom: 8px;
}

.cvy-contact__info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cvy-contact__info-icon {
  width: 40px;
  height: 40px;
  background: var(--section-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-green);
  font-size: 1rem;
}

.cvy-contact__info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cvy-contact__info-label {
  font-size: 0.75rem;
  color: var(--text-on-light-subtle);
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cvy-contact__info-value {
  font-size: 0.9375rem;
  color: var(--text-on-light-primary);
}

.cvy-contact__info-value a {
  color: var(--accent-green);
  text-decoration: none;
}

.cvy-contact__info-value a:hover {
  text-decoration: underline;
}

.cvy-contact__demo-prompt {
  padding-top: 16px;
  border-top: 1px solid #E2EAF4;
  font-size: 0.9375rem;
  color: var(--text-on-light-muted);
}

.cvy-contact__demo-prompt a {
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 500;
}

.cvy-contact__demo-prompt a:hover {
  text-decoration: underline;
}

/* ==========================================
   BLOG — LISTING PAGE
   ========================================== */
.cvy-blog-header {
  background: var(--section-light);
  padding-top: 148px;
  padding-bottom: 48px;
}

.cvy-blog-header__headline {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: var(--text-on-light-primary);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.cvy-blog-header__subhead {
  font-size: 1.0625rem;
  color: var(--text-on-light-muted);
}

.cvy-blog-grid-section {
  background: var(--section-light);
  padding-top: 0;
}

.cvy-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

.cvy-blog-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

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

.cvy-blog-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.cvy-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cvy-blog-card__category {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cvy-blog-card__sep {
  color: #D0DCE8;
  font-size: 0.75rem;
}

.cvy-blog-card__date {
  font-size: 0.75rem;
  color: var(--text-on-light-subtle);
}

.cvy-blog-card__title {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text-on-light-primary);
  line-height: 1.35;
}

.cvy-blog-card:hover .cvy-blog-card__title {
  color: var(--accent-green);
}

.cvy-blog-card__lede {
  font-size: 0.875rem;
  color: var(--text-on-light-muted);
  line-height: 1.6;
  flex: 1;
}

.cvy-blog-card__read {
  font-size: 0.75rem;
  color: var(--text-on-light-subtle);
  font-family: 'IBM Plex Mono', monospace;
  margin-top: 8px;
}

/* ==========================================
   BLOG — ARTICLE PAGE
   ========================================== */
.cvy-post-hero {
  background: var(--section-light);
  padding-top: 148px;
  padding-bottom: 40px;
}

.cvy-post-hero__container {
  max-width: 860px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.cvy-post-hero__category {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}

.cvy-post-hero__title {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.875rem, 4vw, 2.875rem);
  color: var(--text-on-light-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cvy-post-hero__meta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.cvy-post-hero__meta-item {
  font-size: 0.875rem;
  color: var(--text-on-light-subtle);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cvy-post-hero__cover {
  display: block;
  width: 100%;
  height: auto;
  max-width: 860px;
  margin-inline: auto;
  margin-block: 32px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cvy-post-hero__cover img {
  width: 100%;
  height: auto;
  display: block;
}

.cvy-post-body {
  background: var(--section-white);
}

.cvy-post-layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 48px;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: 56px;
}

.cvy-post-content {
  min-width: 0;
}

.cvy-article-body {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-on-light-primary);
}

.cvy-article-body h2 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text-on-light-primary);
  margin-top: 2.5em;
  margin-bottom: 0.75em;
  letter-spacing: -0.015em;
}

.cvy-article-body h3 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-on-light-primary);
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.cvy-article-body p {
  margin-bottom: 1.25em;
  color: var(--text-on-light-muted);
}

.cvy-article-body ul, .cvy-article-body ol {
  padding-left: 1.5em;
  margin-bottom: 1.25em;
}

.cvy-article-body ul {
  list-style: disc;
}

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

.cvy-article-body li {
  margin-bottom: 0.5em;
  color: var(--text-on-light-muted);
}

.cvy-article-body blockquote {
  border-left: 3px solid var(--accent-green);
  padding-left: 20px;
  margin-block: 1.5em;
  font-style: italic;
  color: var(--text-on-light-primary);
}

.cvy-article-body code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875em;
  background: var(--section-light);
  color: var(--text-on-light-primary);
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid #E2EAF4;
}

.cvy-article-body pre {
  background: var(--base-navy);
  color: var(--text-on-dark-primary);
  padding: 20px;
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin-block: 1.5em;
}

.cvy-article-body pre code {
  background: none;
  border: none;
  color: inherit;
  padding: 0;
}

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

.cvy-post-sidebar {
  position: sticky;
  top: 88px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cvy-post-toc {
  background: var(--section-light);
  border-radius: var(--radius-md);
  padding: 20px;
}

.cvy-post-toc__title {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-on-light-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
}

.cvy-post-toc__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cvy-post-toc__link {
  font-size: 0.875rem;
  color: var(--text-on-light-muted);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.15s ease;
}

.cvy-post-toc__link:hover {
  color: var(--accent-green);
}

/* ==========================================
   AUTH PAGES
   ========================================== */
.cvy-auth-page {
  min-height: 100vh;
  background: var(--base-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
}

.cvy-auth-page__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border-navy) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-navy) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.04;
  pointer-events: none;
}

.cvy-auth-card {
  background: var(--section-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

.cvy-auth-card__logo {
  display: block;
  margin-bottom: 32px;
}

.cvy-auth-card__logo img {
  height: 28px;
  width: auto;
}

.cvy-auth-card__title {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text-on-light-primary);
  margin-bottom: 8px;
}

.cvy-auth-card__subtitle {
  font-size: 0.9375rem;
  color: var(--text-on-light-muted);
  margin-bottom: 28px;
}

.cvy-auth-card .cvy-form {
  gap: 16px;
  margin-bottom: 20px;
}

.cvy-auth-card .cvy-btn--primary {
  width: 100%;
  justify-content: center;
}

.cvy-auth-card__link-row {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-on-light-muted);
  margin-top: 12px;
}

.cvy-auth-card__link-row a {
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 500;
}

.cvy-auth-card__link-row a:hover {
  text-decoration: underline;
}

.cvy-auth-card__legal {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #E2EAF4;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-on-light-subtle);
  line-height: 1.6;
}

.cvy-auth-card__legal a {
  color: var(--text-on-light-muted);
  text-decoration: none;
}

.cvy-auth-card__legal a:hover {
  color: var(--text-on-light-primary);
}

.cvy-auth-card__trial-note {
  font-size: 0.8125rem;
  color: var(--text-on-light-subtle);
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  margin-top: -4px;
}

/* ==========================================
   LEGAL PAGES
   ========================================== */
.cvy-legal-page {
  background: var(--section-white);
  padding-top: 148px;
  padding-bottom: 80px;
}

.cvy-legal-page main {
  background: var(--section-white);
}

.cvy-legal-content {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.legal-article {
  color: var(--text-on-light-primary);
}

.legal-header {
  margin-bottom: 40px;
}

.legal-header h1 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text-on-light-primary);
  margin-bottom: 12px;
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--text-on-light-subtle);
  font-family: 'IBM Plex Mono', monospace;
  line-height: 1.6;
}

.legal-article section {
  margin-bottom: 36px;
}

.legal-article h2 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-on-light-primary);
  margin-bottom: 12px;
  margin-top: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #E2EAF4;
}

.legal-article h3 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text-on-light-primary);
  margin-bottom: 8px;
  margin-top: 20px;
}

.legal-article p {
  font-size: 0.9375rem;
  color: var(--text-on-light-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-article ul, .legal-article ol {
  padding-left: 1.5em;
  margin-bottom: 14px;
}

.legal-article ul {
  list-style: disc;
}

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

.legal-article li {
  font-size: 0.9375rem;
  color: var(--text-on-light-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

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

.legal-article a:hover {
  text-decoration: underline;
}

.legal-article strong {
  color: var(--text-on-light-primary);
  font-weight: 600;
}

.legal-article address {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--text-on-light-muted);
  line-height: 1.9;
  background: var(--section-light);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid #E2EAF4;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.legal-table th {
  background: var(--section-light);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  color: var(--text-on-light-primary);
  font-size: 0.875rem;
  border: 1px solid #E2EAF4;
}

.legal-table td {
  padding: 10px 14px;
  color: var(--text-on-light-muted);
  border: 1px solid #E2EAF4;
  vertical-align: top;
}

.legal-table tr:nth-child(even) td {
  background: var(--section-light);
}

/* ==========================================
   PAGE HERO — SUB-PAGES (generic)
   ========================================== */
.cvy-page-hero {
  padding-top: 148px;
  padding-bottom: 64px;
}

.cvy-page-hero--dark {
  background: var(--base-navy);
}

.cvy-page-hero--light {
  background: var(--section-light);
}

.cvy-page-hero--dark .cvy-page-hero__headline {
  color: var(--text-on-dark-primary);
}

.cvy-page-hero--light .cvy-page-hero__headline {
  color: var(--text-on-light-primary);
}

.cvy-page-hero__headline {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

/* ==========================================
   PROSE (shared, theme-scoped)
   ========================================== */
.cvy-page--dark-top .cvy-prose {
  color: var(--text-on-dark-muted);
}

.cvy-page--light-top .cvy-prose {
  color: var(--text-on-light-muted);
}

/* ==========================================
   ACCESSIBILITY UTILITIES
   ========================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================
   FADE-IN ANIMATION
   ========================================== */
.cvy-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ==========================================
   COOKIE BANNER
   ========================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--surface-navy);
  border-top: 1px solid var(--border-navy);
  padding: 0;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 16px var(--gutter);
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
  flex: 1;
}

.cookie-banner__text a {
  color: var(--accent-green-bright);
  text-decoration: none;
}

.cookie-banner__text a:hover {
  text-decoration: underline;
}

.cookie-banner__actions {
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Inter', system-ui, sans-serif;
  cursor: pointer;
  transition: background 0.15s ease;
}

.cookie-banner__btn--primary {
  background: var(--accent-green);
  color: var(--text-on-dark-primary);
  border: 2px solid var(--accent-green);
}

.cookie-banner__btn--primary:hover {
  background: var(--accent-green-hover);
  border-color: var(--accent-green-hover);
  color: var(--text-on-dark-primary);
}

/* ==========================================
   INLINE SVG DIAGRAMS
   ========================================== */
.cvy-svg-diagram {
  width: 100%;
  height: auto;
}

/* ==========================================
   PAGE CONTENT SPACER (for fixed nav)
   ========================================== */
.cvy-nav-spacer {
  height: 68px;
}

/* ==========================================
   RESPONSIVE — TABLET (≤1024px)
   ========================================== */
@media (max-width: 1024px) {
  .cvy-section {
    padding-block: 64px;
  }

  .cvy-hero__grid,
  .cvy-product-hero__grid,
  .cvy-hiw-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cvy-hero {
    padding-top: 120px;
  }

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

  .cvy-hero__media {
    order: -1;
  }

  .cvy-solution__cards {
    grid-template-columns: 1fr 1fr;
  }

  .cvy-metrics__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cvy-metrics__stat::before {
    display: none;
  }

  .cvy-walkthrough__panel {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }

  .cvy-walkthrough__panel--reverse {
    direction: ltr;
  }

  .cvy-walkthrough__media {
    order: 1;
  }

  .cvy-walkthrough__content {
    order: 2;
  }

  .cvy-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .cvy-footer__grid > :first-child {
    grid-column: span 2;
  }

  .cvy-capabilities__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cvy-pricing-tiers__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cvy-pricing-tiers__grid > :last-child {
    grid-column: span 2;
  }

  .cvy-post-layout {
    grid-template-columns: 1fr;
  }

  .cvy-post-sidebar {
    position: static;
    display: none;
  }

  .cvy-about-story__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .cvy-contact__grid {
    grid-template-columns: 1fr;
  }

  .cvy-hiw-timeline__nodes {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 32px;
  }
}

/* ==========================================
   RESPONSIVE — MOBILE (≤768px)
   ========================================== */
@media (max-width: 768px) {
  :root {
    --gutter: 16px;
  }

  .cvy-section {
    padding-block: 48px;
  }

  .cvy-hero {
    padding-top: 104px;
    padding-bottom: 48px;
  }

  .cvy-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cvy-nav__links,
  .cvy-nav__actions {
    display: none;
  }

  .cvy-nav__hamburger {
    display: flex;
  }

  .cvy-nav--open .cvy-nav__mobile {
    display: flex;
  }

  .cvy-solution__cards {
    grid-template-columns: 1fr;
  }

  .cvy-metrics__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cvy-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .cvy-blog-grid {
    grid-template-columns: 1fr;
  }

  .cvy-footer__grid {
    grid-template-columns: 1fr;
  }

  .cvy-footer__grid > :first-child {
    grid-column: span 1;
  }

  .cvy-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cvy-capabilities__grid {
    grid-template-columns: 1fr;
  }

  .cvy-pricing-tiers__grid {
    grid-template-columns: 1fr;
  }

  .cvy-pricing-tiers__grid > :last-child {
    grid-column: span 1;
  }

  .cvy-contact-grid {
    grid-template-columns: 1fr;
  }

  .cvy-hiw-step {
    grid-template-columns: 52px 1fr;
    gap: 20px;
  }

  .cvy-hiw-timeline__nodes {
    grid-template-columns: repeat(2, 1fr);
  }

  .cvy-auth-card {
    padding: 28px 20px;
  }

  .cvy-logo-cloud__row {
    gap: 24px;
  }

  .cvy-problem__grid {
    grid-template-columns: 1fr;
  }

  .cvy-about-story {
    padding-inline: 0;
  }

  .cvy-about-story__grid {
    padding-inline: var(--gutter);
  }

  .cvy-post-layout {
    padding-inline: var(--gutter);
  }

  .cvy-pricing-card__badge {
    font-size: 0.6875rem;
    padding: 3px 10px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ==========================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ========================================== */
@media (max-width: 480px) {
  .cvy-metrics__grid {
    grid-template-columns: 1fr;
  }

  .cvy-hiw-timeline__nodes {
    grid-template-columns: 1fr;
  }

  .cvy-integrations__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cvy-integrations__grid .cvy-integration-tile--note {
    grid-column: span 2;
  }

  .cvy-btn--lg {
    padding: 12px 24px;
    font-size: 0.9375rem;
  }
}
