/* Wio Capital — wiocapitalhq.com */
/* Palette: ink=#0f1923 slate=#1a2535 parchment=#f5f1eb paper=#eae6df */
/* gold=#c4913b gold-text=#7a5420 warm-white=#e8e0d0 mist=#9aa4b2 */
/* navy-text=#1a2535 charcoal=#4a5568 forest=#3d8c5e meadow=#2a6b44 */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --wio-ink:        #0f1923;
  --wio-slate:      #1a2535;
  --wio-parchment:  #f5f1eb;
  --wio-paper:      #eae6df;
  --wio-white:      #ffffff;
  --wio-gold:       #c4913b;
  --wio-gold-text:  #7a5420;
  --wio-warm-white: #e8e0d0;
  --wio-mist:       #9aa4b2;
  --wio-navy-text:  #1a2535;
  --wio-charcoal:   #4a5568;
  --wio-forest:     #3d8c5e;
  --wio-meadow:     #2a6b44;

  --wio-nav-h: 64px;

  --wio-radius-sm:  4px;
  --wio-radius-md:  8px;
  --wio-radius-lg:  16px;

  --wio-shadow-card: 0 2px 12px rgba(15,25,35,0.12);
  --wio-shadow-nav:  0 1px 0 rgba(196,145,59,0.15);

  --wio-font-heading: 'DM Serif Display', Georgia, serif;
  --wio-font-body:    'Sora', 'Inter', system-ui, sans-serif;
  --wio-font-mono:    'JetBrains Mono', 'Courier New', monospace;

  --wio-section-v: 96px;
  --wio-container-max: 1200px;
  --wio-container-pad: 24px;
}

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

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

body {
  font-family: var(--wio-font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--wio-charcoal);
  background: var(--wio-ink);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--wio-font-heading); line-height: 1.2; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.wio-container {
  max-width: var(--wio-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--wio-container-pad);
  padding-right: var(--wio-container-pad);
}

.wio-section {
  padding-top: var(--wio-section-v);
  padding-bottom: var(--wio-section-v);
}

.wio-visually-hidden,
.wio-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Section background variants */
.wio-bg--ink        { background: var(--wio-ink); }
.wio-bg--slate      { background: var(--wio-slate); }
.wio-bg--parchment  { background: var(--wio-parchment); }
.wio-bg--paper      { background: var(--wio-paper); }
.wio-bg--white      { background: var(--wio-white); }

/* Text color utilities */
.wio-text--warm-white { color: var(--wio-warm-white); }
.wio-text--mist       { color: var(--wio-mist); }
.wio-text--gold       { color: var(--wio-gold); }
.wio-text--gold-text  { color: var(--wio-gold-text); }
.wio-text--navy       { color: var(--wio-navy-text); }
.wio-text--charcoal   { color: var(--wio-charcoal); }
.wio-text--meadow     { color: var(--wio-meadow); }

/* ============================================================
   FADE-IN REVEAL ANIMATION
   ============================================================ */
.wio-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.wio-reveal--hidden {
  opacity: 0;
  transform: translateY(20px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.wio-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--wio-nav-h);
  background: var(--wio-ink);
  border-bottom: 1px solid rgba(196,145,59,0.12);
  transition: box-shadow 0.2s ease;
}

.wio-nav--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.45);
}

.wio-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--wio-container-max);
  margin: auto;
  padding: 0 var(--wio-container-pad);
}

.wio-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.wio-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.wio-nav__links a {
  font-family: var(--wio-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wio-warm-white);
  letter-spacing: 0.01em;
  transition: color 0.15s;
}

.wio-nav__links a:hover { color: var(--wio-gold); }

.wio-nav__links a[aria-current="page"] { color: var(--wio-gold); }

.wio-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.wio-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wio-warm-white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.wio-nav--open .wio-nav__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.wio-nav--open .wio-nav__toggle span:nth-child(2) {
  opacity: 0;
}
.wio-nav--open .wio-nav__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.wio-nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--wio-nav-h);
  left: 0; right: 0;
  background: var(--wio-ink);
  border-top: 1px solid rgba(196,145,59,0.12);
  padding: 24px var(--wio-container-pad);
  z-index: 899;
}

.wio-nav--open .wio-nav__mobile-menu {
  display: block;
}

.wio-nav__mobile-menu a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--wio-warm-white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(232,224,208,0.08);
  transition: color 0.15s;
}

.wio-nav__mobile-menu a:last-child { border-bottom: none; }
.wio-nav__mobile-menu a:hover { color: var(--wio-gold); }

.wio-nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.wio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--wio-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--wio-radius-sm);
  padding: 10px 20px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

/* Primary: gold bg, ink text */
.wio-btn--primary {
  background: var(--wio-gold);
  color: var(--wio-ink);
  border: 2px solid var(--wio-gold);
}
.wio-btn--primary:hover {
  background: #b8843a;
  border-color: #b8843a;
  color: var(--wio-ink);
}

/* Ghost on dark sections */
.wio-btn--ghost-dark {
  background: transparent;
  color: var(--wio-warm-white);
  border: 2px solid rgba(232,224,208,0.4);
}
.wio-btn--ghost-dark:hover {
  border-color: var(--wio-warm-white);
  color: var(--wio-warm-white);
}

/* Outline on light/cream/white sections */
.wio-btn--outline-light {
  background: transparent;
  color: var(--wio-navy-text);
  border: 2px solid var(--wio-navy-text);
}
.wio-btn--outline-light:hover {
  background: var(--wio-navy-text);
  color: var(--wio-warm-white);
}

/* Text link on dark sections */
.wio-btn--text-dark {
  background: transparent;
  color: var(--wio-warm-white);
  border: 2px solid transparent;
  padding-left: 0; padding-right: 0;
}
.wio-btn--text-dark:hover { color: var(--wio-gold); }

/* Text link on light sections */
.wio-btn--text-light {
  background: transparent;
  color: var(--wio-navy-text);
  border: 2px solid transparent;
  padding-left: 0; padding-right: 0;
}
.wio-btn--text-light:hover { color: var(--wio-gold-text); }

/* Full width */
.wio-btn--full { width: 100%; }

/* Size variants */
.wio-btn--lg {
  font-size: 1rem;
  padding: 14px 28px;
}

.wio-btn--sm {
  font-size: 0.8125rem;
  padding: 7px 14px;
}

/* Nav sign-in button */
.wio-btn--nav-signin {
  background: transparent;
  color: var(--wio-warm-white);
  border: 1.5px solid rgba(232,224,208,0.35);
  font-size: 0.8125rem;
  padding: 7px 16px;
}
.wio-btn--nav-signin:hover {
  border-color: var(--wio-gold);
  color: var(--wio-gold);
}

/* ============================================================
   SECTION LABELS / EYEBROWS
   ============================================================ */
.wio-label {
  display: inline-block;
  font-family: var(--wio-font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* On dark sections: gold */
.wio-bg--ink .wio-label,
.wio-bg--slate .wio-label {
  color: var(--wio-gold);
}

/* On light sections: gold-text */
.wio-bg--parchment .wio-label,
.wio-bg--paper .wio-label,
.wio-bg--white .wio-label {
  color: var(--wio-gold-text);
}

/* Stand-alone label with explicit theme */
.wio-label--dark  { color: var(--wio-gold); }
.wio-label--light { color: var(--wio-gold-text); }

/* ============================================================
   HEADINGS
   ============================================================ */
.wio-h1 {
  font-family: var(--wio-font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.wio-h2 {
  font-family: var(--wio-font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.wio-h3 {
  font-family: var(--wio-font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 400;
  line-height: 1.25;
}

.wio-h4 {
  font-family: var(--wio-font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.35;
}

/* Heading colors by section context */
.wio-bg--ink .wio-h1,
.wio-bg--ink .wio-h2,
.wio-bg--ink .wio-h3,
.wio-bg--ink .wio-h4,
.wio-bg--slate .wio-h1,
.wio-bg--slate .wio-h2,
.wio-bg--slate .wio-h3,
.wio-bg--slate .wio-h4 {
  color: var(--wio-warm-white);
}

.wio-bg--parchment .wio-h1,
.wio-bg--parchment .wio-h2,
.wio-bg--parchment .wio-h3,
.wio-bg--parchment .wio-h4,
.wio-bg--paper .wio-h1,
.wio-bg--paper .wio-h2,
.wio-bg--paper .wio-h3,
.wio-bg--paper .wio-h4,
.wio-bg--white .wio-h1,
.wio-bg--white .wio-h2,
.wio-bg--white .wio-h3,
.wio-bg--white .wio-h4 {
  color: var(--wio-navy-text);
}

/* Lead paragraph */
.wio-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 300;
}

.wio-bg--ink .wio-lead,
.wio-bg--slate .wio-lead {
  color: var(--wio-mist);
}

.wio-bg--parchment .wio-lead,
.wio-bg--paper .wio-lead,
.wio-bg--white .wio-lead {
  color: var(--wio-charcoal);
}

/* Body text */
.wio-body {
  font-size: 1rem;
  line-height: 1.7;
}

.wio-bg--ink .wio-body,
.wio-bg--slate .wio-body {
  color: var(--wio-mist);
}

.wio-bg--parchment .wio-body,
.wio-bg--paper .wio-body,
.wio-bg--white .wio-body {
  color: var(--wio-charcoal);
}

/* Muted text */
.wio-muted {
  font-size: 0.875rem;
  line-height: 1.6;
}

.wio-bg--ink .wio-muted,
.wio-bg--slate .wio-muted {
  color: var(--wio-mist);
}

.wio-bg--parchment .wio-muted,
.wio-bg--paper .wio-muted,
.wio-bg--white .wio-muted {
  color: var(--wio-charcoal);
  opacity: 0.75;
}

/* ============================================================
   HERO — INDEX (two-column: text + mock)
   ============================================================ */
.wio-hero {
  background: var(--wio-ink);
  padding-top: calc(var(--wio-nav-h) + 80px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.wio-hero__bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 100% 40%, rgba(196,145,59,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 0% 80%, rgba(26,37,53,0.8) 0%, transparent 60%);
}

.wio-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--wio-container-max);
  margin: auto;
  padding: 0 var(--wio-container-pad);
  position: relative;
  z-index: 1;
}

.wio-hero__text { max-width: 560px; }

.wio-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wio-hero__title {
  font-family: var(--wio-font-heading);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--wio-warm-white);
  margin-bottom: 24px;
}

.wio-hero__title em {
  font-style: normal;
  color: var(--wio-gold);
}

.wio-hero__sub {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--wio-mist);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

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

.wio-hero__proof {
  margin-top: 28px;
  font-size: 0.8125rem;
  color: var(--wio-mist);
  opacity: 0.75;
}

/* ============================================================
   INLINE MOCK — REBALANCING QUEUE (hero right column)
   ============================================================ */
.wio-mock-rq {
  background: var(--wio-slate);
  border-radius: var(--wio-radius-lg);
  border-top: 3px solid var(--wio-gold);
  padding: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  width: 100%;
  max-width: 520px;
}

.wio-mock-rq__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.wio-mock-rq__title {
  font-family: var(--wio-font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--wio-warm-white);
  letter-spacing: 0.03em;
}

.wio-mock-rq__meta {
  font-size: 0.75rem;
  color: var(--wio-mist);
}

.wio-mock-rq__row {
  display: grid;
  grid-template-columns: 1fr 80px 56px 72px;
  gap: 8px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(232,224,208,0.06);
}

.wio-mock-rq__row:last-of-type { border-bottom: none; }

.wio-mock-rq__client {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--wio-warm-white);
}

.wio-mock-rq__alloc-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.wio-mock-rq__alloc-fill {
  position: absolute;
  left: 0; top: 0; height: 100%;
  background: var(--wio-forest);
  border-radius: 3px;
}

.wio-mock-rq__drift {
  font-family: var(--wio-font-mono);
  font-size: 0.75rem;
  color: var(--wio-gold);
  text-align: right;
}

.wio-mock-rq__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 20px;
}

.wio-mock-rq__status--ready {
  background: rgba(61,140,94,0.2);
  color: #5bc68a;
}

.wio-mock-rq__status--alert {
  background: rgba(196,145,59,0.28);
  color: var(--wio-warm-white);
}

.wio-mock-rq__footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wio-mock-rq__count {
  font-size: 0.75rem;
  color: var(--wio-mist);
}

/* ============================================================
   METRICS BAR (dark-alt stripe)
   ============================================================ */
.wio-metrics {
  background: var(--wio-slate);
  padding: 40px 0;
  border-top: 1px solid rgba(196,145,59,0.12);
  border-bottom: 1px solid rgba(196,145,59,0.12);
}

.wio-metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}

.wio-metrics__item {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid rgba(232,224,208,0.08);
}

.wio-metrics__item:last-child { border-right: none; }

.wio-metrics__value {
  font-family: var(--wio-font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--wio-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.wio-metrics__label {
  font-size: 0.8125rem;
  color: var(--wio-mist);
  font-weight: 400;
}

/* ============================================================
   PROBLEM SECTION (light/parchment)
   ============================================================ */
.wio-problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}

.wio-problem__points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wio-problem__point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.wio-problem__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(196,145,59,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--wio-gold-text);
  font-size: 0.875rem;
}

.wio-problem__point-title {
  font-family: var(--wio-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--wio-navy-text);
  margin-bottom: 4px;
}

.wio-problem__point-text {
  font-size: 0.9375rem;
  color: var(--wio-charcoal);
  line-height: 1.65;
}

.wio-problem__stat-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wio-problem__stat-card {
  background: var(--wio-paper);
  border-radius: var(--wio-radius-md);
  padding: 24px;
  border-left: 3px solid var(--wio-gold);
}

.wio-problem__stat-number {
  font-family: var(--wio-font-heading);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--wio-navy-text);
  line-height: 1;
  margin-bottom: 8px;
}

.wio-problem__stat-desc {
  font-size: 0.9375rem;
  color: var(--wio-charcoal);
  line-height: 1.55;
}

/* ============================================================
   PLATFORM PREVIEW SECTION (white/cream, 3-col feature cards)
   ============================================================ */
.wio-platform__intro {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

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

.wio-feature-card {
  background: var(--wio-white);
  border-radius: var(--wio-radius-md);
  padding: 32px 28px;
  border: 1px solid rgba(26,37,53,0.08);
  box-shadow: var(--wio-shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
}

.wio-bg--paper .wio-feature-card {
  background: var(--wio-parchment);
  border-color: rgba(26,37,53,0.1);
}

.wio-feature-card:hover {
  box-shadow: 0 6px 28px rgba(15,25,35,0.16);
  transform: translateY(-2px);
}

.wio-feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--wio-radius-sm);
  background: rgba(196,145,59,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--wio-gold-text);
  margin-bottom: 20px;
}

.wio-feature-card__title {
  font-family: var(--wio-font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--wio-navy-text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.wio-feature-card__text {
  font-size: 0.9375rem;
  color: var(--wio-charcoal);
  line-height: 1.65;
}

.wio-feature-card__mock {
  margin-top: 24px;
  border-radius: var(--wio-radius-sm);
  overflow: hidden;
  background: var(--wio-ink);
}

/* ============================================================
   INLINE MOCK — PLATFORM DRIFT TABLE
   ============================================================ */
.wio-mock-drift {
  background: var(--wio-slate);
  border-radius: var(--wio-radius-md);
  padding: 16px;
  font-size: 0.75rem;
}

.wio-mock-drift__header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(232,224,208,0.1);
  color: var(--wio-mist);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
}

.wio-mock-drift__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(232,224,208,0.05);
  align-items: center;
}

.wio-mock-drift__name {
  color: var(--wio-warm-white);
  font-weight: 500;
}

.wio-mock-drift__val {
  font-family: var(--wio-font-mono);
  color: var(--wio-mist);
  text-align: right;
}

.wio-mock-drift__val--pos { color: #5bc68a; }
.wio-mock-drift__val--neg { color: #e07070; }
.wio-mock-drift__val--gold { color: var(--wio-gold); }

/* ============================================================
   INLINE MOCK — REPORT PREVIEW
   ============================================================ */
.wio-mock-report {
  background: var(--wio-slate);
  border-radius: var(--wio-radius-md);
  padding: 16px;
}

.wio-mock-report__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.wio-mock-report__client-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--wio-warm-white);
}

.wio-mock-report__period {
  font-size: 0.6875rem;
  color: var(--wio-mist);
}

.wio-mock-report__badge {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(61,140,94,0.2);
  color: #5bc68a;
}

.wio-mock-report__perf-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.wio-mock-report__metric {
  text-align: center;
  background: rgba(15,25,35,0.4);
  border-radius: var(--wio-radius-sm);
  padding: 8px 4px;
}

.wio-mock-report__metric-val {
  font-family: var(--wio-font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--wio-gold);
  display: block;
}

.wio-mock-report__metric-lbl {
  font-size: 0.625rem;
  color: var(--wio-mist);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   INLINE MOCK — CLIENT PREP CARD
   ============================================================ */
.wio-mock-prep {
  background: var(--wio-slate);
  border-radius: var(--wio-radius-md);
  padding: 16px;
}

.wio-mock-prep__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.wio-mock-prep__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(196,145,59,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--wio-warm-white);
  font-family: var(--wio-font-mono);
  flex-shrink: 0;
}

.wio-mock-prep__name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--wio-warm-white);
}

.wio-mock-prep__meeting {
  font-size: 0.6875rem;
  color: var(--wio-mist);
}

.wio-mock-prep__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wio-mock-prep__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--wio-mist);
}

.wio-mock-prep__item i {
  color: var(--wio-gold);
  margin-top: 1px;
  flex-shrink: 0;
}

/* ============================================================
   INLINE MOCK — BOOK OF BUSINESS
   ============================================================ */
.wio-mock-bob {
  background: var(--wio-slate);
  border-radius: var(--wio-radius-md);
  padding: 20px;
}

.wio-mock-bob__summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.wio-mock-bob__stat {
  text-align: center;
  background: rgba(15,25,35,0.35);
  border-radius: var(--wio-radius-sm);
  padding: 10px 6px;
}

.wio-mock-bob__stat-val {
  font-family: var(--wio-font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--wio-gold);
  display: block;
  line-height: 1.2;
}

.wio-mock-bob__stat-lbl {
  font-size: 0.6125rem;
  color: var(--wio-mist);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 3px;
}

.wio-mock-bob__rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wio-mock-bob__row {
  display: grid;
  grid-template-columns: 1fr 80px 56px;
  gap: 8px;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(232,224,208,0.06);
  font-size: 0.75rem;
}

.wio-mock-bob__row-name { color: var(--wio-warm-white); font-weight: 500; }
.wio-mock-bob__row-aum {
  font-family: var(--wio-font-mono);
  color: var(--wio-mist);
  text-align: right;
}
.wio-mock-bob__row-change {
  font-family: var(--wio-font-mono);
  text-align: right;
}
.wio-mock-bob__row-change--pos { color: #5bc68a; }
.wio-mock-bob__row-change--neg { color: #e07070; }

/* ============================================================
   FOUNDER BRIEF (cream section)
   ============================================================ */
.wio-founder__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.wio-founder__photo-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.wio-founder__photo-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(196,145,59,0.3);
}

.wio-founder__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.wio-founder__photo-initials {
  width: 100%;
  height: 100%;
  background: var(--wio-slate);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--wio-gold);
  font-family: var(--wio-font-mono);
}

.wio-founder__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wio-navy-text);
  text-align: center;
}

.wio-founder__role {
  font-size: 0.75rem;
  color: var(--wio-charcoal);
  text-align: center;
  margin-top: -8px;
}

.wio-founder__content { padding-top: 8px; }

.wio-founder__quote {
  font-family: var(--wio-font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  color: var(--wio-navy-text);
  line-height: 1.45;
  margin-bottom: 20px;
}

.wio-founder__bio {
  font-size: 0.9375rem;
  color: var(--wio-charcoal);
  line-height: 1.75;
}

/* ============================================================
   TESTIMONIALS (dark section)
   ============================================================ */
.wio-testimonials__intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

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

.wio-testimonials__grid--2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin-inline: auto;
}

.wio-testimonial-card {
  background: var(--wio-slate);
  border-radius: var(--wio-radius-md);
  padding: 32px 28px;
  border: 1px solid rgba(196,145,59,0.12);
  display: flex;
  flex-direction: column;
}

.wio-testimonial-card__quote {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--wio-mist);
  flex: 1;
  margin-bottom: 24px;
}

.wio-testimonial-card__quote::before {
  content: '\201C';
  font-family: var(--wio-font-heading);
  font-size: 2rem;
  color: var(--wio-gold);
  line-height: 0.8;
  display: block;
  margin-bottom: 8px;
}

.wio-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(232,224,208,0.08);
  padding-top: 20px;
}

.wio-testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(196,145,59,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--wio-warm-white);
  font-family: var(--wio-font-mono);
  flex-shrink: 0;
}

.wio-testimonial-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wio-warm-white);
  line-height: 1.3;
}

.wio-testimonial-card__role {
  font-size: 0.75rem;
  color: var(--wio-mist);
}

.wio-testimonial-card__source {
  font-size: 0.6875rem;
  color: var(--wio-mist);
  opacity: 0.65;
  margin-top: 2px;
}

/* ============================================================
   PRICING PREVIEW / PRICING PAGE
   ============================================================ */
.wio-pricing__intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.wio-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}

.wio-pricing-toggle__label {
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
}

.wio-bg--ink .wio-pricing-toggle__label,
.wio-bg--slate .wio-pricing-toggle__label {
  color: var(--wio-mist);
}

.wio-pricing-toggle__label--active {
  color: var(--wio-warm-white) !important;
}

.wio-bg--parchment .wio-pricing-toggle__label,
.wio-bg--paper .wio-pricing-toggle__label,
.wio-bg--white .wio-pricing-toggle__label {
  color: var(--wio-charcoal);
}

.wio-pricing-toggle__label--active-light {
  color: var(--wio-navy-text) !important;
  font-weight: 600;
}

.wio-toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  background: rgba(196,145,59,0.25);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.2s;
  border: 1px solid rgba(196,145,59,0.3);
}

.wio-toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: var(--wio-gold);
  border-radius: 50%;
  transition: transform 0.2s;
}

.wio-toggle-switch.wio-toggle--annual::after {
  transform: translateX(22px);
}

.wio-pricing__save-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(61,140,94,0.15);
  color: var(--wio-meadow);
  margin-left: 4px;
}

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

.wio-pricing-card {
  background: var(--wio-white);
  border-radius: var(--wio-radius-lg);
  padding: 36px 28px;
  border: 2px solid rgba(26,37,53,0.08);
  position: relative;
  transition: box-shadow 0.2s;
}

.wio-bg--ink .wio-pricing-card,
.wio-bg--slate .wio-pricing-card {
  background: var(--wio-slate);
  border-color: rgba(232,224,208,0.1);
}

.wio-pricing-card:hover {
  box-shadow: 0 8px 32px rgba(15,25,35,0.14);
}

.wio-pricing-card--featured {
  border-color: var(--wio-gold);
  box-shadow: 0 4px 24px rgba(196,145,59,0.15);
}

.wio-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wio-gold);
  color: var(--wio-ink);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.wio-pricing-card__tier {
  font-family: var(--wio-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.wio-bg--ink .wio-pricing-card__tier,
.wio-bg--slate .wio-pricing-card__tier {
  color: var(--wio-mist);
}

.wio-bg--parchment .wio-pricing-card__tier,
.wio-bg--paper .wio-pricing-card__tier,
.wio-bg--white .wio-pricing-card__tier {
  color: var(--wio-charcoal);
}

.wio-pricing-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.wio-pricing-card__currency {
  font-family: var(--wio-font-body);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--wio-gold-text);
}

.wio-pricing-card__amount {
  font-family: var(--wio-font-heading);
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1;
  color: var(--wio-gold-text);
}

.wio-bg--ink .wio-pricing-card__currency,
.wio-bg--slate .wio-pricing-card__currency {
  color: var(--wio-gold);
}

.wio-bg--ink .wio-pricing-card__amount,
.wio-bg--slate .wio-pricing-card__amount {
  color: var(--wio-gold);
}

.wio-pricing-card__period {
  font-size: 0.875rem;
  color: var(--wio-mist);
}

.wio-bg--parchment .wio-pricing-card__period,
.wio-bg--paper .wio-pricing-card__period,
.wio-bg--white .wio-pricing-card__period {
  color: var(--wio-charcoal);
  opacity: 0.7;
}

.wio-pricing-card__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(26,37,53,0.08);
}

.wio-bg--ink .wio-pricing-card__desc,
.wio-bg--slate .wio-pricing-card__desc {
  color: var(--wio-mist);
  border-bottom-color: rgba(232,224,208,0.08);
}

.wio-bg--parchment .wio-pricing-card__desc,
.wio-bg--paper .wio-pricing-card__desc,
.wio-bg--white .wio-pricing-card__desc {
  color: var(--wio-charcoal);
}

.wio-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.wio-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
}

.wio-pricing-card__feature i {
  color: var(--wio-meadow);
  margin-top: 3px;
  flex-shrink: 0;
}

.wio-bg--ink .wio-pricing-card__feature,
.wio-bg--slate .wio-pricing-card__feature {
  color: var(--wio-mist);
}

.wio-bg--parchment .wio-pricing-card__feature,
.wio-bg--paper .wio-pricing-card__feature,
.wio-bg--white .wio-pricing-card__feature {
  color: var(--wio-charcoal);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.wio-faq {
  max-width: 720px;
  margin: 0 auto;
}

.wio-faq__item {
  border-bottom: 1px solid rgba(26,37,53,0.1);
}

.wio-bg--ink .wio-faq__item,
.wio-bg--slate .wio-faq__item {
  border-bottom-color: rgba(232,224,208,0.1);
}

.wio-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.wio-faq__question-text {
  font-family: var(--wio-font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.4;
}

.wio-bg--ink .wio-faq__question-text,
.wio-bg--slate .wio-faq__question-text {
  color: var(--wio-warm-white);
}

.wio-bg--parchment .wio-faq__question-text,
.wio-bg--paper .wio-faq__question-text,
.wio-bg--white .wio-faq__question-text {
  color: var(--wio-navy-text);
}

.wio-faq__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform 0.25s, background 0.2s;
}

.wio-bg--ink .wio-faq__icon,
.wio-bg--slate .wio-faq__icon {
  border-color: rgba(232,224,208,0.25);
  color: var(--wio-mist);
}

.wio-bg--parchment .wio-faq__icon,
.wio-bg--paper .wio-faq__icon,
.wio-bg--white .wio-faq__icon {
  border-color: rgba(26,37,53,0.2);
  color: var(--wio-charcoal);
}

.wio-faq__item--open .wio-faq__icon {
  transform: rotate(45deg);
  background: var(--wio-gold);
  border-color: var(--wio-gold);
  color: var(--wio-ink);
}

.wio-faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.wio-faq__item--open .wio-faq__answer {
  max-height: 600px;
}

.wio-faq__answer-inner {
  padding-bottom: 20px;
  font-size: 0.9375rem;
  line-height: 1.75;
}

.wio-bg--ink .wio-faq__answer-inner,
.wio-bg--slate .wio-faq__answer-inner {
  color: var(--wio-mist);
}

.wio-bg--parchment .wio-faq__answer-inner,
.wio-bg--paper .wio-faq__answer-inner,
.wio-bg--white .wio-faq__answer-inner {
  color: var(--wio-charcoal);
}

/* ============================================================
   CTA STRIP (dark section)
   ============================================================ */
.wio-cta-strip {
  background: var(--wio-slate);
  border-top: 1px solid rgba(196,145,59,0.15);
  border-bottom: 1px solid rgba(196,145,59,0.15);
}

.wio-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.wio-cta-strip__text { flex: 1; min-width: 260px; }

.wio-cta-strip__headline {
  font-family: var(--wio-font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--wio-warm-white);
  margin-bottom: 8px;
}

.wio-cta-strip__sub {
  font-size: 0.9375rem;
  color: var(--wio-mist);
  line-height: 1.6;
}

.wio-cta-strip__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.wio-footer {
  background: var(--wio-ink);
  border-top: 1px solid rgba(196,145,59,0.12);
  padding: 64px 0 32px;
}

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

.wio-footer__brand { max-width: 280px; }

.wio-footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.wio-footer__logo img {
  height: 28px;
  width: auto;
}

.wio-footer__tagline {
  font-size: 0.875rem;
  color: var(--wio-mist);
  line-height: 1.65;
  margin-bottom: 16px;
}

.wio-footer__contact {
  font-size: 0.8125rem;
  color: var(--wio-mist);
  line-height: 1.8;
}

.wio-footer__contact a {
  color: var(--wio-mist);
  transition: color 0.15s;
}

.wio-footer__contact a:hover { color: var(--wio-gold); }

.wio-footer__col-title {
  font-family: var(--wio-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wio-warm-white);
  margin-bottom: 16px;
}

.wio-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wio-footer__links a {
  font-size: 0.875rem;
  color: var(--wio-mist);
  transition: color 0.15s;
  line-height: 1.4;
}

.wio-footer__links a:hover { color: var(--wio-gold); }

.wio-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(232,224,208,0.07);
}

.wio-footer__copy {
  font-size: 0.8125rem;
  color: var(--wio-mist);
  opacity: 0.7;
}

.wio-footer__legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.wio-footer__legal-links a {
  font-size: 0.8125rem;
  color: var(--wio-mist);
  opacity: 0.7;
  transition: color 0.15s, opacity 0.15s;
}

.wio-footer__legal-links a:hover {
  color: var(--wio-gold);
  opacity: 1;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--wio-slate);
  border-top: 1px solid rgba(196,145,59,0.2);
  padding: 20px 0;
}

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

.cookie-banner__text {
  font-size: 0.875rem;
  color: var(--wio-mist);
  line-height: 1.6;
  flex: 1;
  min-width: 240px;
}

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

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wio-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--wio-radius-sm);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 2px solid transparent;
}

.cookie-banner__btn--primary {
  background: var(--wio-gold);
  color: var(--wio-ink);
  border-color: var(--wio-gold);
}

.cookie-banner__btn--primary:hover {
  background: #b8843a;
  border-color: #b8843a;
  color: var(--wio-ink);
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--wio-mist);
  border-color: rgba(232,224,208,0.25);
}

.cookie-banner__btn--secondary:hover {
  border-color: var(--wio-mist);
  color: var(--wio-warm-white);
}

/* ============================================================
   AUTH PAGES (advisor/ fullscreen card)
   ============================================================ */
.wio-auth-page {
  min-height: 100vh;
  background: var(--wio-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px var(--wio-container-pad);
  position: relative;
}

.wio-auth-page__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(196,145,59,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(26,37,53,0.6) 0%, transparent 60%);
}

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

.wio-auth-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

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

.wio-auth-card__title {
  font-family: var(--wio-font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--wio-navy-text);
  text-align: center;
  margin-bottom: 8px;
}

.wio-auth-card__sub {
  font-size: 0.9375rem;
  color: var(--wio-charcoal);
  text-align: center;
  margin-bottom: 32px;
}

.wio-auth-card__confirm {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.wio-auth-card__confirm.wio-auth-confirm--visible {
  display: block;
}

.wio-auth-card__confirm-icon {
  font-size: 2.5rem;
  color: var(--wio-meadow);
  margin-bottom: 16px;
}

.wio-auth-card__confirm-title {
  font-family: var(--wio-font-heading);
  font-size: 1.375rem;
  color: var(--wio-navy-text);
  margin-bottom: 10px;
}

.wio-auth-card__confirm-text {
  font-size: 0.9375rem;
  color: var(--wio-charcoal);
  line-height: 1.65;
}

.wio-auth-card__error {
  display: none;
  background: rgba(224,112,112,0.1);
  border: 1px solid rgba(224,112,112,0.3);
  border-radius: var(--wio-radius-sm);
  padding: 12px 16px;
  font-size: 0.875rem;
  color: #c0392b;
  margin-bottom: 16px;
}

.wio-auth-card__error--visible { display: block; }

.wio-auth-card__footer {
  margin-top: 24px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--wio-charcoal);
}

.wio-auth-card__footer a {
  color: var(--wio-gold-text);
  font-weight: 500;
}

.wio-auth-card__footer a:hover { text-decoration: underline; }

.wio-auth-card__legal {
  margin-top: 20px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--wio-charcoal);
  opacity: 0.7;
  line-height: 1.6;
}

.wio-auth-card__legal a {
  color: var(--wio-charcoal);
  text-decoration: underline;
}

/* ============================================================
   FORMS
   ============================================================ */
.wio-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.wio-form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wio-navy-text);
}

.wio-form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(26,37,53,0.18);
  border-radius: var(--wio-radius-sm);
  font-family: var(--wio-font-body);
  font-size: 1rem;
  color: var(--wio-navy-text);
  background: var(--wio-white);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

.wio-form-input:focus {
  border-color: var(--wio-gold);
  box-shadow: 0 0 0 3px rgba(196,145,59,0.12);
}

.wio-form-input::placeholder { color: rgba(74,85,104,0.45); }

.wio-form-helper {
  font-size: 0.8125rem;
  color: var(--wio-charcoal);
  opacity: 0.65;
}

/* ============================================================
   SUB-PAGE HERO (generic)
   ============================================================ */
.wio-subhero {
  padding-top: calc(var(--wio-nav-h) + 72px);
  padding-bottom: 72px;
  position: relative;
  overflow: hidden;
}

.wio-subhero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 80% 50%, rgba(196,145,59,0.04) 0%, transparent 65%);
}

.wio-subhero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--wio-container-max);
  margin: auto;
  padding: 0 var(--wio-container-pad);
  position: relative;
  z-index: 1;
}

.wio-subhero__text { max-width: 580px; }

.wio-subhero__title {
  font-family: var(--wio-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--wio-warm-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.wio-subhero__sub {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--wio-mist);
  line-height: 1.7;
  margin-bottom: 32px;
}

.wio-subhero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Centered sub-hero variant (no visual anchor column) */
.wio-subhero--centered .wio-subhero__inner {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}

.wio-subhero--centered .wio-subhero__text {
  max-width: 680px;
}

/* ============================================================
   STAT BAND (sub-hero anchor on dark pages)
   ============================================================ */
.wio-stat-band {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--wio-slate);
  border-radius: var(--wio-radius-lg);
  border: 1px solid rgba(196,145,59,0.15);
  padding: 28px 24px;
}

.wio-stat-band__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wio-stat-band__val {
  font-family: var(--wio-font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--wio-gold);
  line-height: 1;
}

.wio-stat-band__lbl {
  font-size: 0.8125rem;
  color: var(--wio-mist);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.wio-about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.wio-about-value-card {
  background: var(--wio-paper);
  border-radius: var(--wio-radius-md);
  padding: 28px 24px;
}

.wio-about-value-card__icon {
  font-size: 1.5rem;
  color: var(--wio-gold-text);
  margin-bottom: 14px;
}

.wio-about-value-card__title {
  font-family: var(--wio-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--wio-navy-text);
  margin-bottom: 8px;
}

.wio-about-value-card__text {
  font-size: 0.9rem;
  color: var(--wio-charcoal);
  line-height: 1.65;
}

/* Team grid */
.wio-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.wio-team-card {
  text-align: center;
}

.wio-team-card__photo-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 2px solid rgba(196,145,59,0.2);
  position: relative;
}

.wio-team-card__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.wio-team-card__initials {
  width: 100%;
  height: 100%;
  background: var(--wio-paper);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wio-gold-text);
  font-family: var(--wio-font-mono);
}

.wio-team-card__name {
  font-family: var(--wio-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--wio-navy-text);
  margin-bottom: 4px;
}

.wio-team-card__title {
  font-size: 0.875rem;
  color: var(--wio-gold-text);
  margin-bottom: 10px;
}

.wio-team-card__bio {
  font-size: 0.875rem;
  color: var(--wio-charcoal);
  line-height: 1.65;
}

/* ============================================================
   PLATFORM / FEATURES DETAIL PAGES
   ============================================================ */
.wio-features-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.wio-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.wio-feature-row--flip { direction: rtl; }
.wio-feature-row--flip > * { direction: ltr; }

.wio-feature-row__text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wio-feature-row__title {
  font-family: var(--wio-font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--wio-navy-text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.wio-bg--ink .wio-feature-row__title,
.wio-bg--slate .wio-feature-row__title {
  color: var(--wio-warm-white);
}

.wio-feature-row__text p {
  font-size: 0.9375rem;
  color: var(--wio-charcoal);
  line-height: 1.75;
  margin-bottom: 14px;
}

.wio-bg--ink .wio-feature-row__text p,
.wio-bg--slate .wio-feature-row__text p {
  color: var(--wio-mist);
}

.wio-feature-row__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   INTEGRATIONS / HOW-IT-WORKS
   ============================================================ */
.wio-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 48px;
}

.wio-how-step {
  text-align: center;
  padding: 32px 24px;
  background: var(--wio-paper);
  border-radius: var(--wio-radius-md);
  position: relative;
}

.wio-how-step__num {
  font-family: var(--wio-font-heading);
  font-size: 3rem;
  font-weight: 400;
  color: var(--wio-gold-text);
  line-height: 1;
  margin-bottom: 16px;
}

.wio-how-step__icon {
  font-size: 1.75rem;
  color: var(--wio-gold-text);
  margin-bottom: 16px;
}

.wio-how-step__title {
  font-family: var(--wio-font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--wio-navy-text);
  margin-bottom: 10px;
}

.wio-how-step__text {
  font-size: 0.9rem;
  color: var(--wio-charcoal);
  line-height: 1.65;
}

/* ============================================================
   BLOG INDEX
   ============================================================ */
.wio-blog-hero {
  background: var(--wio-ink);
  padding-top: calc(var(--wio-nav-h) + 64px);
  padding-bottom: 64px;
  text-align: center;
}

.wio-blog-hero__title {
  font-family: var(--wio-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--wio-warm-white);
  margin-bottom: 14px;
}

.wio-blog-hero__sub {
  font-size: 1.0625rem;
  color: var(--wio-mist);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.wio-blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 64px;
  background: var(--wio-paper);
  border-radius: var(--wio-radius-lg);
  overflow: hidden;
}

.wio-blog-featured__img-wrap {
  height: 320px;
  overflow: hidden;
}

.wio-blog-featured__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wio-blog-featured__content {
  padding: 32px 36px 32px 8px;
}

.wio-blog-featured__meta {
  font-size: 0.8125rem;
  color: var(--wio-charcoal);
  margin-bottom: 12px;
  opacity: 0.75;
}

.wio-blog-featured__title {
  font-family: var(--wio-font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 400;
  color: var(--wio-navy-text);
  line-height: 1.2;
  margin-bottom: 14px;
}

.wio-blog-featured__excerpt {
  font-size: 0.9375rem;
  color: var(--wio-charcoal);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.wio-blog-card {
  background: var(--wio-white);
  border-radius: var(--wio-radius-md);
  overflow: hidden;
  border: 1px solid rgba(26,37,53,0.07);
  box-shadow: var(--wio-shadow-card);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.wio-bg--parchment .wio-blog-card {
  background: var(--wio-paper);
}

.wio-blog-card:hover {
  box-shadow: 0 6px 24px rgba(15,25,35,0.14);
  transform: translateY(-2px);
}

.wio-blog-card__img-wrap {
  height: 200px;
  overflow: hidden;
}

.wio-blog-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.wio-blog-card:hover .wio-blog-card__img-wrap img {
  transform: scale(1.03);
}

.wio-blog-card__body {
  padding: 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wio-blog-card__meta {
  font-size: 0.75rem;
  color: var(--wio-charcoal);
  opacity: 0.7;
  margin-bottom: 10px;
}

.wio-blog-card__cat {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wio-gold-text);
}

.wio-blog-card__title {
  font-family: var(--wio-font-heading);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--wio-navy-text);
  line-height: 1.3;
  margin-bottom: 10px;
  flex: 1;
}

.wio-blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--wio-charcoal);
  line-height: 1.6;
  margin-bottom: 16px;
}

.wio-blog-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wio-gold-text);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.15s;
}

.wio-blog-card:hover .wio-blog-card__link { gap: 8px; }

/* ============================================================
   ARTICLE TEMPLATE (blog single post)
   ============================================================ */
.wio-article-hero {
  background: var(--wio-ink);
  padding-top: calc(var(--wio-nav-h) + 56px);
  padding-bottom: 0;
}

.wio-article-hero__inner {
  max-width: var(--wio-container-max);
  margin: auto;
  padding: 0 var(--wio-container-pad);
}

.wio-article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wio-gold);
  margin-bottom: 28px;
  transition: gap 0.15s;
}

.wio-article-back:hover { gap: 8px; }
.wio-article-back:hover { color: var(--wio-gold); }

.wio-article-hero__meta {
  font-size: 0.875rem;
  color: var(--wio-mist);
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.wio-article-hero__title {
  font-family: var(--wio-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--wio-warm-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 820px;
}

.wio-article-hero__cover {
  margin-top: 40px;
  border-radius: var(--wio-radius-lg) var(--wio-radius-lg) 0 0;
  overflow: hidden;
  aspect-ratio: 16/9;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--wio-container-pad);
  padding-right: var(--wio-container-pad);
}

.wio-article-hero__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.wio-article-body {
  background: var(--wio-white);
  padding: 56px 0 80px;
}

.wio-article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--wio-container-pad);
}

.wio-article-content h2 {
  font-family: var(--wio-font-heading);
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--wio-navy-text);
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.wio-article-content h3 {
  font-family: var(--wio-font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--wio-navy-text);
  margin-top: 32px;
  margin-bottom: 10px;
}

.wio-article-content p {
  font-size: 1.0625rem;
  color: var(--wio-charcoal);
  line-height: 1.8;
  margin-bottom: 20px;
}

.wio-article-content ul,
.wio-article-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.wio-article-content ul { list-style: disc; }
.wio-article-content ol { list-style: decimal; }

.wio-article-content li {
  font-size: 1.0625rem;
  color: var(--wio-charcoal);
  line-height: 1.75;
  margin-bottom: 6px;
  padding-left: 4px;
}

.wio-article-content blockquote {
  border-left: 3px solid var(--wio-gold);
  margin: 32px 0;
  padding: 16px 24px;
  background: var(--wio-paper);
  border-radius: 0 var(--wio-radius-sm) var(--wio-radius-sm) 0;
}

.wio-article-content blockquote p {
  font-style: italic;
  color: var(--wio-navy-text);
  margin-bottom: 0;
}

.wio-article-content a {
  color: var(--wio-gold-text);
  text-decoration: underline;
}

.wio-article-cta {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 36px 32px;
  background: var(--wio-parchment);
  border-radius: var(--wio-radius-md);
  border: 1px solid rgba(196,145,59,0.2);
  text-align: center;
}

.wio-article-cta__title {
  font-family: var(--wio-font-heading);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--wio-navy-text);
  margin-bottom: 10px;
}

.wio-article-cta__text {
  font-size: 0.9375rem;
  color: var(--wio-charcoal);
  margin-bottom: 20px;
  line-height: 1.6;
}

.wio-article-related {
  max-width: 720px;
  margin: 40px auto 0;
  padding: 0 var(--wio-container-pad);
}

.wio-article-related__title {
  font-family: var(--wio-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wio-charcoal);
  opacity: 0.65;
  margin-bottom: 16px;
}

.wio-article-related__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wio-article-related__links a {
  font-size: 0.9375rem;
  color: var(--wio-gold-text);
  line-height: 1.4;
}

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

/* ============================================================
   LEGAL CONTENT PAGES (used by abw-legal)
   ============================================================ */
.wio-legal-hero {
  background: var(--wio-ink);
  padding-top: calc(var(--wio-nav-h) + 60px);
  padding-bottom: 60px;
  text-align: center;
}

.wio-legal-hero__title {
  font-family: var(--wio-font-heading);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--wio-warm-white);
  margin-bottom: 12px;
}

.wio-legal-hero__updated {
  font-size: 0.875rem;
  color: var(--wio-mist);
}

.wio-legal-content {
  background: var(--wio-white);
  padding: 64px 0 80px;
}

.wio-legal-content__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  max-width: var(--wio-container-max);
  margin: 0 auto;
  padding: 0 var(--wio-container-pad);
  align-items: start;
}

.wio-legal-toc {
  position: sticky;
  top: calc(var(--wio-nav-h) + 24px);
}

.wio-legal-toc__title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wio-charcoal);
  opacity: 0.65;
  margin-bottom: 14px;
}

.wio-legal-toc__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wio-legal-toc__links a {
  font-size: 0.875rem;
  color: var(--wio-charcoal);
  line-height: 1.4;
  padding: 4px 0;
  transition: color 0.15s;
  border-left: 2px solid transparent;
  padding-left: 12px;
}

.wio-legal-toc__links a:hover { color: var(--wio-gold-text); }
.wio-legal-toc__links a.wio-toc--active {
  color: var(--wio-gold-text);
  border-left-color: var(--wio-gold);
}

.wio-legal-prose h2 {
  font-family: var(--wio-font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--wio-navy-text);
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.2;
  padding-top: 4px;
}

.wio-legal-prose h3 {
  font-family: var(--wio-font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--wio-navy-text);
  margin-top: 28px;
  margin-bottom: 10px;
}

.wio-legal-prose p {
  font-size: 0.9375rem;
  color: var(--wio-charcoal);
  line-height: 1.8;
  margin-bottom: 16px;
}

.wio-legal-prose ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}

.wio-legal-prose li {
  font-size: 0.9375rem;
  color: var(--wio-charcoal);
  line-height: 1.75;
  margin-bottom: 6px;
}

.wio-legal-prose a {
  color: var(--wio-gold-text);
  text-decoration: underline;
}

.wio-legal-prose strong {
  color: var(--wio-navy-text);
  font-weight: 600;
}

/* ============================================================
   PRICING PAGE SPECIFIC
   ============================================================ */
.wio-pricing-hero {
  background: var(--wio-ink);
  padding-top: calc(var(--wio-nav-h) + 72px);
  padding-bottom: 72px;
  text-align: center;
}

.wio-pricing-hero__title {
  font-family: var(--wio-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--wio-warm-white);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.wio-pricing-hero__sub {
  font-size: 1.0625rem;
  color: var(--wio-mist);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* Comparison table (pricing page) */
.wio-comparison-wrap {
  overflow-x: auto;
}

.wio-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.wio-comparison-table th {
  padding: 14px 20px;
  text-align: left;
  font-family: var(--wio-font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--wio-paper);
  color: var(--wio-navy-text);
  border-bottom: 2px solid rgba(26,37,53,0.1);
}

.wio-comparison-table td {
  padding: 13px 20px;
  color: var(--wio-charcoal);
  border-bottom: 1px solid rgba(26,37,53,0.06);
  vertical-align: middle;
}

.wio-comparison-table tr:last-child td { border-bottom: none; }
.wio-comparison-table td:first-child { font-weight: 500; color: var(--wio-navy-text); }

.wio-comparison-check { color: var(--wio-meadow); font-size: 1rem; }
.wio-comparison-dash  { color: var(--wio-charcoal); opacity: 0.35; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.wio-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.wio-contact-form {
  background: var(--wio-white);
  border-radius: var(--wio-radius-lg);
  padding: 40px 36px;
  border: 1px solid rgba(26,37,53,0.08);
  box-shadow: var(--wio-shadow-card);
}

.wio-contact-info__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.wio-contact-info__icon {
  width: 40px; height: 40px;
  border-radius: var(--wio-radius-sm);
  background: rgba(196,145,59,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wio-gold-text);
  font-size: 1rem;
  flex-shrink: 0;
}

.wio-contact-info__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wio-charcoal);
  opacity: 0.65;
  margin-bottom: 4px;
}

.wio-contact-info__value {
  font-size: 0.9375rem;
  color: var(--wio-charcoal);
}

.wio-contact-info__value a {
  color: var(--wio-gold-text);
}

/* ============================================================
   404 PAGE
   ============================================================ */
.wio-notfound {
  min-height: calc(100vh - var(--wio-nav-h));
  background: var(--wio-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--wio-nav-h) + 40px) var(--wio-container-pad) 80px;
  text-align: center;
}

.wio-notfound__inner { max-width: 480px; }

.wio-notfound__code {
  font-family: var(--wio-font-heading);
  font-size: 8rem;
  font-weight: 400;
  color: var(--wio-gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.wio-notfound__title {
  font-family: var(--wio-font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--wio-warm-white);
  margin-bottom: 14px;
}

.wio-notfound__text {
  font-size: 1rem;
  color: var(--wio-mist);
  line-height: 1.65;
  margin-bottom: 32px;
}

/* ============================================================
   GENERAL PROSE SECTIONS
   ============================================================ */
.wio-prose-section {
  max-width: 720px;
  margin: 0 auto;
}

.wio-prose-section p {
  font-size: 1rem;
  color: var(--wio-charcoal);
  line-height: 1.8;
  margin-bottom: 16px;
}

.wio-prose-section h2 {
  font-family: var(--wio-font-heading);
  font-size: 1.75rem;
  color: var(--wio-navy-text);
  margin-bottom: 16px;
  margin-top: 40px;
}

/* ============================================================
   RESPONSIVE — TABLET (768px)
   ============================================================ */
@media (max-width: 900px) {
  :root { --wio-section-v: 72px; }

  .wio-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .wio-hero__text { max-width: 100%; }

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

  .wio-metrics__item:nth-child(2) { border-right: none; }

  .wio-problem__grid { grid-template-columns: 1fr; gap: 40px; }

  .wio-platform__cards { grid-template-columns: 1fr 1fr; }

  .wio-founder__inner { grid-template-columns: 1fr; }
  .wio-founder__photo-col { flex-direction: row; align-items: center; justify-content: flex-start; }

  .wio-testimonials__grid,
  .wio-testimonials__grid--2col { grid-template-columns: 1fr; gap: 20px; }

  .wio-pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: auto; }

  .wio-subhero__inner { grid-template-columns: 1fr; gap: 40px; }

  .wio-feature-row { grid-template-columns: 1fr; gap: 36px; }
  .wio-feature-row--flip { direction: ltr; }

  .wio-how-steps { grid-template-columns: 1fr 1fr; }

  .wio-blog-featured { grid-template-columns: 1fr; }
  .wio-blog-featured__img-wrap { height: 240px; }
  .wio-blog-featured__content { padding: 24px 24px; }

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

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

  .wio-about-values { grid-template-columns: 1fr 1fr; }
  .wio-team-grid { grid-template-columns: 1fr 1fr; }

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

  .wio-legal-content__inner { grid-template-columns: 1fr; }
  .wio-legal-toc { position: static; margin-bottom: 32px; }

  .wio-cta-strip__inner { flex-direction: column; text-align: center; }
  .wio-cta-strip__actions { justify-content: center; }
}

/* ============================================================
   RESPONSIVE — MOBILE (640px)
   ============================================================ */
@media (max-width: 640px) {
  :root {
    --wio-section-v: 56px;
    --wio-container-pad: 18px;
  }

  .wio-nav__links { display: none; }
  .wio-nav__actions { display: none; }
  .wio-nav__toggle { display: flex; }

  .wio-platform__cards { grid-template-columns: 1fr; }

  .wio-metrics__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .wio-metrics__item { border-right: none; padding: 8px; }

  .wio-how-steps { grid-template-columns: 1fr; }

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

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

  .wio-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .wio-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .wio-footer__legal-links { gap: 14px; }

  .wio-about-values { grid-template-columns: 1fr; }
  .wio-team-grid { grid-template-columns: 1fr; }

  .wio-auth-card { padding: 32px 24px; }

  .wio-article-hero__cover { padding-left: 0; padding-right: 0; }

  .wio-subhero__inner { grid-template-columns: 1fr; }

  .wio-legal-content__inner { grid-template-columns: 1fr; }

  .wio-comparison-wrap { overflow-x: auto; }

  .wio-cookie-banner__inner { flex-direction: column; }

  .wio-btn--lg { padding: 12px 22px; font-size: 0.9375rem; }

  .wio-hero__title { font-size: clamp(2rem, 8vw, 2.8rem); }

  .wio-testimonial-card { padding: 24px 20px; }
}

/* ============================================================
   FEATURE ROW EXTENDED (aliases + list)
   ============================================================ */
.wio-feature-row__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.wio-feature-row__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--wio-charcoal);
  line-height: 1.55;
}

.wio-bg--ink .wio-feature-row__list li,
.wio-bg--slate .wio-feature-row__list li {
  color: var(--wio-mist);
}

.wio-feature-row__list li i {
  color: var(--wio-meadow);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ============================================================
   PLATFORM HOW-IT-WORKS — 4-COL OVERRIDE
   ============================================================ */
.wio-how-steps--four {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .wio-how-steps--four { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   BLOG SUBSCRIBE STRIP
   ============================================================ */
.wio-blog-subscribe {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}

.wio-blog-subscribe__form {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.wio-blog-subscribe__input {
  flex: 1;
  min-width: 220px;
  padding: 12px 16px;
  border-radius: var(--wio-radius-sm);
  border: 1.5px solid rgba(232,224,208,0.2);
  background: rgba(255,255,255,0.07);
  color: var(--wio-warm-white);
  font-family: var(--wio-font-body);
  font-size: 0.9375rem;
}

.wio-blog-subscribe__input::placeholder { color: var(--wio-mist); }
.wio-blog-subscribe__input:focus { outline: none; border-color: var(--wio-gold); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.wio-contact-confirm {
  display: none;
  text-align: center;
  padding: 48px 0;
}

.wio-contact-confirm__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(42,107,68,0.12);
  color: var(--wio-meadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.wio-contact-confirm__title {
  font-family: var(--wio-font-heading);
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--wio-navy-text);
  margin-bottom: 12px;
}

.wio-contact-confirm__text {
  font-size: 0.9375rem;
  color: var(--wio-charcoal);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
}

/* JS state hooks — shown by default, hidden by wio.js on form submit */
.wio-contact-form-view { display: block; }
.wio-auth-register-view { display: block; }
.wio-auth-forgot-view { display: block; }

/* JS selector hooks — wio.js attaches event listeners to these class names;
   visual styling is provided by co-located classes on the same element */
.wio-auth-login-form { /* JS state hook, no styling */ }
.wio-auth-register-form { /* JS state hook, no styling */ }
.wio-auth-forgot-form { /* JS state hook, no styling */ }
.wio-auth-confirm--register { /* JS state hook, no styling */ }
.wio-auth-confirm--forgot { /* JS state hook, no styling */ }
.wio-contact-main-form { /* JS state hook, no styling */ }
.wio-pricing-toggle__label--monthly { /* JS selector hook; state styling via --active modifier */ }
.wio-pricing-toggle__label--annual { /* JS selector hook; state styling via --active modifier */ }
.wio-pricing-toggle__save { /* JS selector hook; visibility controlled via style.visibility; visual styling via wio-pricing__save-badge */ }

.wio-contact-note {
  margin-top: 32px;
  padding: 20px 20px;
  background: rgba(196,145,59,0.07);
  border-left: 3px solid var(--wio-gold);
  border-radius: 0 var(--wio-radius-sm) var(--wio-radius-sm) 0;
  font-size: 0.9rem;
  color: var(--wio-charcoal);
  line-height: 1.6;
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .wio-nav, .wio-nav__mobile-menu, .cookie-banner { display: none; }
  .wio-hero { padding-top: 0; }
  body { background: white; color: black; }
}
