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

   --ws: #5D2BFF  (Workstatus violet)

   §0  Hero           — dark, violet glow, editorial headline
   §1  What It Does   — light warm, three product pillars
   §2  Who It Serves  — dark, three audience panels
   §3  Vinove Standard — light warm bridge
   §4  CTA            — dark conviction close
   ============================================================ */

:root {
  --ws: #5D2BFF;
  --ws-hover: #4A1FE0;
  --ws-tint: rgba(93, 43, 255, .08);
  --ws-glow: rgba(93, 43, 255, .18);
}


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

#ws-hero {
  min-height: 100svh;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Background photo */
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark overlay — preserves text legibility */
.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%);
}

/* Violet radial glow — upper-right bloom */
.ws-hero-glow {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ws-glow) 0%, transparent 62%);
  pointer-events: none;
  z-index: 2;
}

/* Secondary softer glow — lower-left */
.ws-hero-glow-2 {
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 43, 255, .07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 2;
}

.ws-hero-inner {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: calc(var(--max) + var(--gutter) * 2);
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--nav-h) + clamp(3rem, 7vw, 7rem)) var(--gutter) clamp(4rem, 8vw, 8rem);
}

/* Eyebrow row: dot + label */
.ws-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ws);
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.ws-hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ws);
  flex-shrink: 0;
  animation: ws-pulse 2.6s ease-in-out infinite;
}

@keyframes ws-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(93, 43, 255, .55); }
  50%       { box-shadow: 0 0 0 6px rgba(93, 43, 255, 0); }
}

.ws-hero-h1 {
  font-family: var(--font);
  font-size: clamp(2.75rem, 7.5vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.03em;
  margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
  max-width: 16ch;
}

.ws-hero-h1-line {
  display: block;
  color: #fff;
}

.ws-hero-h1-accent {
  display: block;
  color: var(--ws);
}

.ws-hero-sub {
  font-family: var(--font);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--ink-text-body);
  max-width: 52ch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

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

.ws-btn-primary:hover {
  background: var(--ws-hover);
  border-color: var(--ws-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(93, 43, 255, .35);
}

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

/* Ghost secondary: white outline on dark */
.ws-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font);
  font-size: .9375rem;
  font-weight: 600;
  padding: .75rem 1.75rem;
  border-radius: var(--r-full);
  background: transparent;
  color: rgba(255, 255, 255, .72);
  border: 1.5px solid rgba(255, 255, 255, .2);
  cursor: pointer;
  transition: border-color var(--dur-base) var(--ease), color var(--dur-base) var(--ease);
  white-space: nowrap;
}

.ws-btn-ghost:hover {
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

/* Bottom stat strip */
.ws-hero-stats {
  margin-top: clamp(3rem, 6vw, 5.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.ws-stat {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.ws-stat-num {
  font-family: var(--font);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
  line-height: 1;
}

.ws-stat-label {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-text-muted);
  letter-spacing: .02em;
}


/* ╔═══════════════════════════════════════════════════════╗
   §1  WHAT IT DOES
   ╚═══════════════════════════════════════════════════════╝ */

#ws-product {
  background: var(--paper);
  padding-block: clamp(5rem, 9vw, 8rem);
  padding-inline: var(--gutter);
}

.ws-product-inner {
  max-width: var(--max);
  margin-inline: auto;
}

.ws-product-header {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  max-width: 56ch;
}

.ws-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;
  color: var(--ws);
  margin-bottom: 1.25rem;
}

.ws-section-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ws);
  flex-shrink: 0;
}

.ws-section-h2 {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.15;
  color: var(--text-strong);
  margin-bottom: .875rem;
}

.ws-section-lead {
  font-family: var(--font);
  font-size: clamp(.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.7;
  color: var(--text-body);
}

/* Three pillar cards */
.ws-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ws-pillar {
  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: 1.125rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}

.ws-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ws);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.ws-pillar:hover {
  border-color: rgba(93, 43, 255, .25);
  box-shadow: 0 6px 28px rgba(93, 43, 255, .09);
  transform: translateY(-2px);
}

.ws-pillar:hover::before {
  transform: scaleX(1);
}

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

.ws-pillar-icon svg {
  width: 22px; height: 22px;
  stroke: var(--ws);
  stroke-width: 1.75;
  fill: none;
}

.ws-pillar-name {
  font-family: var(--font);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text-strong);
}

.ws-pillar-desc {
  font-family: var(--font);
  font-size: .9375rem;
  line-height: 1.65;
  color: var(--text-body);
  flex: 1;
}


/* ╔═══════════════════════════════════════════════════════╗
   §2  WHO IT SERVES
   ╚═══════════════════════════════════════════════════════╝ */

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

/* Subtle violet bleed top-right */
#ws-audience::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 43, 255, .09) 0%, transparent 65%);
  pointer-events: none;
}

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

.ws-audience-header {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  max-width: 52ch;
}

.ws-audience-header .ws-section-eyebrow {
  color: var(--ws);
}

.ws-audience-header .ws-section-eyebrow::before {
  background: var(--ws);
}

.ws-audience-header .ws-section-h2 {
  color: var(--ink-text-strong);
}

.ws-audience-header .ws-section-lead {
  color: var(--ink-text-body);
}

/* Three audience panels */
.ws-audiences {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ws-audience-card {
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  background: rgba(255, 255, 255, .03);
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease), background var(--dur-base) var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}

.ws-audience-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ws), rgba(93, 43, 255, 0));
  opacity: 0;
  transition: opacity .35s var(--ease);
}

.ws-audience-card:hover {
  border-color: rgba(93, 43, 255, .35);
  background: rgba(93, 43, 255, .05);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(93, 43, 255, .12);
}

.ws-audience-card:hover::after {
  opacity: 1;
}

.ws-audience-num {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ws);
  opacity: .8;
}

.ws-audience-title {
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--ink-text-strong);
  line-height: 1.2;
}

.ws-audience-desc {
  font-family: var(--font);
  font-size: .9375rem;
  line-height: 1.65;
  color: var(--ink-text-body);
  flex: 1;
}


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

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

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

.ws-standard-left {
  /* Left column */
}

.ws-standard-right {
  /* Right: proof list */
}

.ws-standard-h2 {
  font-family: var(--font);
  font-size: clamp(1.625rem, 3vw, 2.375rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.2;
  color: var(--text-strong);
  margin-bottom: 1.25rem;
}

.ws-standard-body {
  font-family: var(--font);
  font-size: clamp(.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.ws-standard-link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 600;
  color: var(--terra);
  transition: gap var(--dur-base) var(--ease);
}

.ws-standard-link:hover { gap: .625rem; }

.ws-standard-link svg {
  width: 12px; height: 12px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

/* Proof checklist */
.ws-proof-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ws-proof-item {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  transition: border-color var(--dur-base) var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}

.ws-proof-item:hover {
  border-color: rgba(93, 43, 255, .2);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.ws-proof-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ws-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.ws-proof-check svg {
  width: 11px; height: 11px;
  stroke: var(--ws);
  stroke-width: 2.5;
  fill: none;
}

.ws-proof-text {
  font-family: var(--font);
  font-size: .9375rem;
  line-height: 1.55;
  color: var(--text-body);
}

.ws-proof-text strong {
  color: var(--text-strong);
  font-weight: 600;
}


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

#ws-cta {
  background: #09091A;
  padding-block: clamp(5rem, 9vw, 8rem);
  padding-inline: var(--gutter);
  position: relative;
  overflow: hidden;
}

/* Deep violet glow centre */
#ws-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(93, 43, 255, .13) 0%, transparent 65%);
  pointer-events: none;
}

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

.ws-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(--ws);
  margin-bottom: 1.5rem;
}

.ws-cta-eyebrow::before,
.ws-cta-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(93, 43, 255, .4);
}

.ws-cta-h2 {
  font-family: var(--font);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: #fff;
  max-width: 24ch;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.ws-cta-sub {
  font-family: var(--font);
  font-size: clamp(.9375rem, 1.3vw, 1.0625rem);
  line-height: 1.65;
  color: var(--ink-text-body);
  max-width: 48ch;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

/* Violet primary for CTA section */
.ws-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font);
  font-size: .9375rem;
  font-weight: 600;
  padding: .85rem 2rem;
  border-radius: var(--r-full);
  background: var(--ws);
  color: #fff;
  border: 1.5px solid var(--ws);
  cursor: pointer;
  transition: background var(--dur-base) var(--ease), transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}

.ws-cta-btn-primary:hover {
  background: var(--ws-hover);
  border-color: var(--ws-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(93, 43, 255, .4);
}

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

/* Vinove link */
.ws-cta-btn-text {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-family: var(--font);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--ink-text-body);
  transition: color var(--dur-base) var(--ease), gap var(--dur-base) var(--ease);
}

.ws-cta-btn-text:hover {
  color: #fff;
  gap: .625rem;
}

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


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

@media (max-width: 960px) {
  .ws-pillars,
  .ws-audiences {
    grid-template-columns: 1fr;
  }

  .ws-standard-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ws-hero-actions,
  .ws-cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .ws-cta-actions {
    align-items: center;
  }

  .ws-hero-stats {
    gap: 1.5rem 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ws-hero-eyebrow-dot { animation: none; }
  .ws-btn-primary,
  .ws-btn-ghost,
  .ws-cta-btn-primary,
  .ws-pillar,
  .ws-audience-card,
  .ws-proof-item { transition: none; }
}
