/* ============================================================
   VINOVE — ValueCoders Framing Page
   VNV-VIS-001 v1.0 · VNV-VOX-001 v4.1

   §0  Hero            — dark ink, navy accent
   §1  What They Build — light paper, three columns
   §2  Who They Serve  — dark ink
   §3  The Standard    — light warm surface
   §4  CTA             — dark ink close
   ============================================================ */

:root {
  --vc: #05164D;
  --vc-hover: #040F35;
  --vc-tint: rgba(5, 22, 77, .08);
}


/* ╔═══════════════════════════════════════════════════════╗
   §0  HERO
   ╚═══════════════════════════════════════════════════════╝ */

#vc-hero {
  background: var(--ink);
  padding-top: calc(var(--nav-h) + clamp(4.5rem, 9vw, 7.5rem));
  padding-bottom: clamp(5rem, 9vw, 8rem);
  padding-inline: var(--gutter);
  position: relative;
  overflow: hidden;
}

#vc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 60% at 70% 40%, rgba(5, 22, 77, .28) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 70%, rgba(5, 22, 77, .12) 0%, transparent 60%);
  pointer-events: none;
}

/* Hero background image + overlay */
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(160deg, rgba(9,12,21,.9) 0%, rgba(9,12,21,.6) 45%, rgba(9,12,21,.82) 100%),
    linear-gradient(to right, rgba(9,12,21,.6) 0%, transparent 65%);
}

.vc-hero-inner {
  max-width: var(--max);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.vc-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vc);
  background: rgba(5, 22, 77, .15);
  border: 1px solid rgba(5, 22, 77, .35);
  border-radius: var(--r-full);
  padding: .3rem .875rem;
  margin-bottom: 2rem;
}

.vc-hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--r-full);
  background: var(--vc);
  flex-shrink: 0;
}

.vc-hero-h1 {
  font-family: var(--font);
  font-size: clamp(2.75rem, 6.5vw, 4.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--ink-text-strong);
  max-width: 18ch;
  margin-bottom: 1.75rem;
}

.vc-hero-h1 em {
  font-style: normal;
  /* Brand navy (--vc #05164D) is invisible on the dark hero — use a
     lightened on-dark variant so the highlighted line reads clearly */
  color: #7C93E6;
}

.vc-hero-sub {
  font-family: var(--font);
  font-size: clamp(1rem, 1.5vw, 1.175rem);
  line-height: 1.65;
  color: var(--ink-text-body);
  max-width: 54ch;
  margin-bottom: 2.75rem;
}

.vc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* Primary — navy fill */
.vc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 600;
  padding: .75rem 1.5rem;
  border-radius: var(--r-full);
  background: var(--vc);
  color: #fff;
  border: 1.5px solid var(--vc);
  cursor: pointer;
  transition: background var(--dur-base) var(--ease), transform var(--dur-base) var(--ease), gap .2s var(--ease);
  white-space: nowrap;
}

.vc-btn-primary:hover {
  background: var(--vc-hover);
  transform: translateY(-1px);
  gap: .75rem;
}

.vc-btn-primary svg {
  width: 12px; height: 12px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

/* Ghost light */
.vc-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 600;
  padding: .75rem 1.5rem;
  border-radius: var(--r-full);
  background: transparent;
  color: var(--ink-text-strong);
  border: 1.5px solid rgba(255, 255, 255, .25);
  cursor: pointer;
  transition: border-color var(--dur-base) var(--ease), background var(--dur-base) var(--ease), transform var(--dur-base) var(--ease), gap .2s var(--ease);
  white-space: nowrap;
}

.vc-btn-ghost:hover {
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .06);
  transform: translateY(-1px);
  gap: .75rem;
}

.vc-btn-ghost svg {
  width: 12px; height: 12px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}


/* ╔═══════════════════════════════════════════════════════╗
   §1  WHAT THEY BUILD
   ╚═══════════════════════════════════════════════════════╝ */

#vc-build {
  background: var(--paper);
  padding-block: clamp(5rem, 9vw, 8rem);
  padding-inline: var(--gutter);
  border-top: 1px solid var(--border-subtle);
}

.vc-build-inner {
  max-width: var(--max);
  margin-inline: auto;
}

.vc-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.vc-section-eyebrow--light {
  color: var(--text-muted);
}

.vc-section-eyebrow--light::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--border-strong);
  flex-shrink: 0;
}

.vc-section-eyebrow--dark {
  color: var(--ink-text-muted);
}

.vc-section-eyebrow--dark::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--ink-border);
  flex-shrink: 0;
}

.vc-section-heading {
  font-family: var(--font);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.15;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.vc-section-heading--light {
  color: var(--text-strong);
}

.vc-section-heading--dark {
  color: var(--ink-text-strong);
}

/* Three-column capability grid */
.vc-build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vc-build-card {
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}

.vc-build-card:hover {
  border-color: rgba(5, 22, 77, .25);
  box-shadow: 0 8px 32px rgba(5, 22, 77, .12);
  transform: translateY(-4px);
}

.vc-build-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--vc-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vc-build-card-icon svg {
  width: 20px; height: 20px;
  stroke: var(--vc);
  stroke-width: 1.75;
  fill: none;
}

.vc-build-card-title {
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text-strong);
}

.vc-build-card-desc {
  font-family: var(--font);
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--text-body);
  flex: 1;
}


/* ╔═══════════════════════════════════════════════════════╗
   §2  WHO THEY SERVE
   ╚═══════════════════════════════════════════════════════╝ */

#vc-serve {
  background: var(--ink);
  padding-block: clamp(5rem, 9vw, 8rem);
  padding-inline: var(--gutter);
  position: relative;
  overflow: hidden;
}

#vc-serve::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 50%, rgba(5, 22, 77, .2) 0%, transparent 70%);
  pointer-events: none;
}

.vc-serve-inner {
  max-width: var(--max);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Two-col layout: heading left, list right */
.vc-serve-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.vc-serve-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vc-serve-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-lg);
  transition: background var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}

.vc-serve-item:hover {
  background: rgba(5, 22, 77, .25);
  border-color: rgba(5, 22, 77, .5);
}

.vc-serve-item-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-full);
  background: var(--vc);
  flex-shrink: 0;
  margin-top: .375rem;
}

.vc-serve-item-body {
  flex: 1;
}

.vc-serve-item-title {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--ink-text-strong);
  margin-bottom: .375rem;
  transition: color .2s var(--ease);
}

.vc-serve-item:hover .vc-serve-item-title {
  color: var(--vc);
}

.vc-serve-item-desc {
  font-family: var(--font);
  font-size: .9375rem;
  line-height: 1.65;
  color: var(--ink-text-body);
}


/* ╔═══════════════════════════════════════════════════════╗
   §3  THE VINOVE STANDARD
   ╚═══════════════════════════════════════════════════════╝ */

#vc-standard {
  background: var(--surface-2);
  padding-block: clamp(5rem, 9vw, 8rem);
  padding-inline: var(--gutter);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.vc-standard-inner {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.vc-standard-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.vc-standard-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--border-strong);
  flex-shrink: 0;
}

.vc-standard-heading {
  font-family: var(--font);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.2;
  color: var(--text-strong);
}

.vc-standard-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vc-standard-para {
  font-family: var(--font);
  font-size: clamp(.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.75;
  color: var(--text-body);
}

.vc-standard-para a {
  color: var(--text-strong);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--border-strong);
  transition: color var(--dur-base) var(--ease), text-decoration-color var(--dur-base) var(--ease);
}

.vc-standard-para a:hover {
  color: var(--vc);
  text-decoration-color: var(--vc);
}


/* ╔═══════════════════════════════════════════════════════╗
   §4  CTA
   ╚═══════════════════════════════════════════════════════╝ */

#vc-cta {
  background: var(--ink);
  padding-block: clamp(5.5rem, 10vw, 9rem);
  padding-inline: var(--gutter);
  position: relative;
  overflow: hidden;
  text-align: center;
}

#vc-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(5, 22, 77, .25) 0%, transparent 68%);
  pointer-events: none;
}

.vc-cta-inner {
  max-width: var(--max);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.vc-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-text-muted);
  margin-bottom: 1.5rem;
}

.vc-cta-eyebrow::before,
.vc-cta-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink-border);
}

.vc-cta-heading {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--ink-text-strong);
  max-width: 22ch;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.vc-cta-sub {
  font-family: var(--font);
  font-size: clamp(.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--ink-text-body);
  max-width: 46ch;
  margin-inline: auto;
  margin-bottom: 2.75rem;
}

.vc-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* Outline button for dark CTA section */
.vc-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 600;
  padding: .75rem 1.5rem;
  border-radius: var(--r-full);
  background: transparent;
  color: var(--ink-text-strong);
  border: 1.5px solid rgba(255, 255, 255, .25);
  cursor: pointer;
  transition: border-color var(--dur-base) var(--ease), background var(--dur-base) var(--ease), transform var(--dur-base) var(--ease), gap .2s var(--ease);
  white-space: nowrap;
}

.vc-btn-outline:hover {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .06);
  transform: translateY(-1px);
  gap: .75rem;
}

.vc-btn-outline svg {
  width: 12px; height: 12px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}


/* ╔═══════════════════════════════════════════════════════╗
   RESPONSIVE
   ╚═══════════════════════════════════════════════════════╝ */

@media (max-width: 1024px) {
  .vc-build-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .vc-serve-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .vc-standard-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

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

  .vc-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .vc-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vc-btn-primary,
  .vc-btn-ghost,
  .vc-btn-outline,
  .vc-build-card,
  .vc-serve-item,
  .vc-serve-item-title { transition: none; }
}
