/*
Theme Name: Vantyr Performance
Theme URI: https://vantyrmarketing.com
Author: Vantyr Sales & Marketing
Description: A custom, text-first recruiting and ISP partnership theme with a verified performance leaderboard, multi-step applications, lead storage, and email notifications. No page builder required.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vantyr-performance
*/

/* =========================================================================
   Design tokens (ported from the v0 design)
   ========================================================================= */
:root {
  color-scheme: dark;

  --background: oklch(0.16 0.018 264);
  --foreground: oklch(0.97 0.004 250);

  --navy: oklch(0.21 0.03 264);

  --card: oklch(0.205 0.028 264);
  --card-foreground: oklch(0.97 0.004 250);

  --primary: oklch(0.63 0.198 256);
  --primary-foreground: oklch(0.99 0 0);

  --secondary: oklch(0.26 0.03 264);
  --muted: oklch(0.25 0.028 264);
  --muted-foreground: oklch(0.73 0.02 258);

  --border: oklch(0.34 0.028 262 / 55%);
  --input: oklch(0.3 0.03 262);
  --ring: oklch(0.63 0.198 256);

  --radius: 0.5rem;

  /* Hex fallbacks for older browsers */
  --fallback-bg: #101318;
  --fallback-fg: #f4f6fa;
  --fallback-primary: #2f7bf6;

  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;

  --maxw: 72rem;
}

/* =========================================================================
   Base / reset
   ========================================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--fallback-bg);
  background-color: var(--background);
  color: var(--fallback-fg);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0;
  font-weight: 700;
  text-wrap: balance;
}

p { margin: 0; }

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

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

button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.vt-container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .vt-container { padding-inline: 1.5rem; }
}

.vt-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;
}

.vt-tabnums { font-variant-numeric: tabular-nums; }

/* =========================================================================
   Buttons
   ========================================================================= */
.vt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.35rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}
.vt-btn:hover { transform: translateY(-1px); }
.vt-btn--primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}
.vt-btn--primary:hover { opacity: 0.92; }
.vt-btn--outline {
  background-color: transparent;
  border-color: var(--border);
  color: var(--foreground);
}
.vt-btn--outline:hover { border-color: var(--primary); color: var(--primary); }
.vt-btn--lg { padding: 0.85rem 1.75rem; font-size: 1.05rem; }
.vt-btn--block { width: 100%; }

/* =========================================================================
   Header
   ========================================================================= */
.vt-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: color-mix(in oklab, var(--background) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.vt-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.vt-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.vt-logo__mark {
  display: grid;
  place-items: center;
  width: 2rem; height: 2rem;
  border-radius: 0.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.95rem;
}
.vt-nav { display: none; gap: 1.75rem; align-items: center; }
.vt-nav a { color: var(--muted-foreground); font-size: 0.9rem; font-weight: 500; transition: color 0.15s ease; }
.vt-nav a:hover { color: var(--foreground); }
.vt-header__cta { display: none; }

.vt-burger {
  display: inline-flex;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
  color: var(--foreground);
}
.vt-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0 1.25rem;
  border-top: 1px solid var(--border);
}
.vt-mobile-nav.is-open { display: flex; }
.vt-mobile-nav a {
  padding: 0.7rem 0.5rem;
  color: var(--muted-foreground);
  font-weight: 500;
  border-radius: var(--radius);
}
.vt-mobile-nav a:hover { color: var(--foreground); background-color: var(--secondary); }

@media (min-width: 900px) {
  .vt-nav { display: flex; }
  .vt-header__cta { display: inline-flex; }
  .vt-burger { display: none; }
}

/* =========================================================================
   Section scaffolding
   ========================================================================= */
.vt-section { padding-block: 5rem; border-top: 1px solid var(--border); scroll-margin-top: 4rem; }
@media (min-width: 640px) { .vt-section { padding-block: 7rem; } }
.vt-section--flush { border-top: 0; }

.vt-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.vt-title { font-size: clamp(1.75rem, 4vw, 2.5rem); }
.vt-subtitle {
  margin-top: 0.9rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  font-size: 1.05rem;
}

/* =========================================================================
   Hero
   ========================================================================= */
.vt-hero { padding-top: 4.5rem; padding-bottom: 4rem; }
.vt-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  background-color: color-mix(in oklab, var(--secondary) 60%, transparent);
  color: var(--muted-foreground);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
}
.vt-hero__badge .dot { width: 0.45rem; height: 0.45rem; border-radius: 999px; background-color: var(--primary); }
.vt-hero h1 {
  margin-top: 1.5rem;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: -0.02em;
}
.vt-hero h1 .accent { color: var(--primary); }
.vt-hero__lead {
  margin-top: 1.4rem;
  font-size: 1.15rem;
  color: var(--muted-foreground);
  max-width: 40rem;
}
.vt-hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }

.vt-audience { margin-top: 4rem; display: grid; gap: 1rem; }
@media (min-width: 768px) { .vt-audience { grid-template-columns: repeat(3, 1fr); } }
.vt-audience__card {
  border: 1px solid var(--border);
  background-color: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.vt-audience__card:hover { border-color: color-mix(in oklab, var(--primary) 50%, var(--border)); transform: translateY(-2px); }
.vt-audience__icon {
  display: grid; place-items: center;
  width: 2.75rem; height: 2.75rem;
  border-radius: 0.75rem;
  background-color: color-mix(in oklab, var(--primary) 15%, transparent);
  color: var(--primary);
  margin-bottom: 1rem;
}
.vt-audience__card h3 { font-size: 1.2rem; }
.vt-audience__card p { margin-top: 0.5rem; color: var(--muted-foreground); font-size: 0.95rem; }
.vt-audience__link { margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.35rem; color: var(--primary); font-weight: 600; font-size: 0.9rem; }

/* =========================================================================
   Leaderboard
   ========================================================================= */
.vt-lb__head { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 1024px) { .vt-lb__head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }

.vt-badge-sample {
  display: inline-flex; align-items: center; gap: 0.4rem;
  border: 1px solid var(--border);
  background-color: color-mix(in oklab, var(--secondary) 60%, transparent);
  color: var(--muted-foreground);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem; font-weight: 500;
  white-space: nowrap;
}
.vt-badge-sample .dot { width: 0.35rem; height: 0.35rem; border-radius: 999px; background-color: var(--primary); }

.vt-tabs {
  margin-top: 2rem;
  display: inline-flex;
  border: 1px solid var(--border);
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 0.25rem;
}
.vt-tab {
  border: 0; background: transparent;
  border-radius: calc(var(--radius) * 0.8);
  padding: 0.5rem 1rem;
  font-size: 0.9rem; font-weight: 500;
  color: var(--muted-foreground);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.vt-tab[aria-selected="true"] { background-color: var(--primary); color: var(--primary-foreground); }

.vt-podium { margin-top: 2rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .vt-podium { grid-template-columns: repeat(3, 1fr); } }
.vt-podium__card {
  border: 1px solid var(--border);
  background-color: var(--card);
  border-radius: 0.9rem;
  padding: 1.5rem;
}
.vt-podium__card.is-first {
  border-color: color-mix(in oklab, var(--primary) 50%, transparent);
  background-color: color-mix(in oklab, var(--primary) 10%, transparent);
}
@media (min-width: 640px) { .vt-podium__card.is-first { margin-top: -1rem; padding-bottom: 2rem; } }
.vt-podium__top { display: flex; align-items: center; justify-content: space-between; }
.vt-podium__rank { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--muted-foreground); }
.vt-podium__card.is-first .vt-podium__rank { color: var(--primary); }
.vt-tag-top { display: inline-flex; align-items: center; gap: 0.25rem; border-radius: 999px; background-color: color-mix(in oklab, var(--primary) 20%, transparent); color: var(--primary); padding: 0.25rem 0.7rem; font-size: 0.72rem; font-weight: 600; }
.vt-person { margin-top: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.vt-person__name { font-family: var(--font-display); font-weight: 600; }
.vt-person__meta { font-size: 0.75rem; color: var(--muted-foreground); }
.vt-podium__stats { margin-top: 1.25rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; text-align: center; }
.vt-stat-cell { background-color: color-mix(in oklab, var(--background) 60%, transparent); border-radius: 0.6rem; padding: 0.6rem 0.25rem; }
.vt-stat-cell dt { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-foreground); }
.vt-stat-cell dd { margin: 0.15rem 0 0; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }

/* Avatar */
.vt-avatar {
  display: grid; place-items: center;
  border-radius: 999px;
  background-color: var(--secondary);
  color: var(--foreground);
  font-family: var(--font-display);
  font-weight: 700;
  flex-shrink: 0;
}
.vt-avatar.is-highlight { background-color: color-mix(in oklab, var(--primary) 25%, transparent); color: var(--primary); }
.vt-avatar--lg { width: 3rem; height: 3rem; font-size: 1rem; }
.vt-avatar--sm { width: 2rem; height: 2rem; font-size: 0.75rem; }

/* Table */
.vt-table-wrap { margin-top: 1.5rem; border: 1px solid var(--border); border-radius: 0.9rem; overflow: hidden; }
.vt-table-scroll { overflow-x: auto; }
.vt-table { width: 100%; min-width: 640px; border-collapse: collapse; text-align: left; font-size: 0.875rem; background-color: var(--card); }
.vt-table thead tr { border-bottom: 1px solid var(--border); }
.vt-table th { padding: 0.75rem 1rem; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-foreground); font-weight: 500; }
.vt-table td { padding: 0.75rem 1rem; border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent); }
.vt-table tbody tr:last-child td { border-bottom: 0; }
.vt-table tbody tr.is-top { background-color: color-mix(in oklab, var(--primary) 4%, transparent); }
.vt-table tbody tr:hover { background-color: color-mix(in oklab, var(--secondary) 40%, transparent); }
.vt-td-right { text-align: right; }
.vt-cell-person { display: flex; align-items: center; gap: 0.6rem; }

.vt-lb__foot { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .vt-lb__foot { flex-direction: row; align-items: center; justify-content: space-between; } }
.vt-disclaimer { display: flex; gap: 0.5rem; font-size: 0.75rem; color: var(--muted-foreground); max-width: 40rem; }

.vt-team { margin-top: 3.5rem; }
.vt-team__head { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; }
.vt-team__head h3 { font-size: 1.15rem; }
.vt-team__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 1024px) { .vt-team__grid { grid-template-columns: repeat(4, 1fr); } }
.vt-team__card { border: 1px solid var(--border); background-color: var(--card); border-radius: 0.9rem; padding: 1.25rem; }
.vt-team__value { font-family: var(--font-display); font-size: 1.85rem; font-weight: 600; }
.vt-team__label { margin-top: 0.35rem; font-size: 0.75rem; color: var(--muted-foreground); }

/* =========================================================================
   About / Mission / audience detail
   ========================================================================= */
.vt-split { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .vt-split { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }
.vt-cred { margin-top: 1.5rem; display: grid; gap: 0.6rem; }
.vt-cred li { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--muted-foreground); font-size: 0.95rem; }
.vt-cred svg { color: var(--primary); flex-shrink: 0; margin-top: 0.15rem; }

.vt-callout { border: 1px solid var(--border); background-color: var(--card); border-radius: 1rem; padding: 2rem; }
.vt-callout p + p { margin-top: 1rem; }

.vt-feature-list { margin-top: 1.5rem; display: grid; gap: 1rem; }
.vt-feature { display: flex; gap: 0.9rem; }
.vt-feature__icon { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 0.7rem; background-color: color-mix(in oklab, var(--primary) 15%, transparent); color: var(--primary); flex-shrink: 0; }
.vt-feature h4 { font-size: 1rem; }
.vt-feature p { margin-top: 0.25rem; color: var(--muted-foreground); font-size: 0.9rem; }

/* ISP reporting mock */
.vt-report { border: 1px solid var(--border); background-color: var(--card); border-radius: 1rem; padding: 1.5rem; }
.vt-report__row { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid color-mix(in oklab, var(--border) 55%, transparent); font-size: 0.9rem; }
.vt-report__row:last-child { border-bottom: 0; }
.vt-report__row span:last-child { font-family: var(--font-display); font-weight: 600; }
.vt-trend { margin-top: 1.25rem; display: flex; align-items: flex-end; gap: 0.35rem; height: 5rem; }
.vt-trend__bar { flex: 1; background-color: color-mix(in oklab, var(--primary) 55%, transparent); border-radius: 0.25rem 0.25rem 0 0; }

/* Principles */
.vt-principles { margin-top: 2.5rem; display: grid; gap: 1rem; }
@media (min-width: 768px) { .vt-principles { grid-template-columns: repeat(3, 1fr); } }
.vt-principle { border: 1px solid var(--border); background-color: var(--card); border-radius: 1rem; padding: 1.5rem; }
.vt-principle__num { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--primary); }
.vt-principle h4 { margin-top: 0.5rem; font-size: 1.1rem; }
.vt-principle p { margin-top: 0.5rem; color: var(--muted-foreground); font-size: 0.9rem; }

/* =========================================================================
   Application form
   ========================================================================= */
.vt-form-wrap { max-width: 40rem; margin-inline: auto; margin-top: 2.5rem; border: 1px solid var(--border); background-color: var(--card); border-radius: 1.1rem; padding: 1.75rem; }
@media (min-width: 640px) { .vt-form-wrap { padding: 2.25rem; } }
.vt-steps { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.75rem; }
.vt-step-dot { flex: 1; height: 0.35rem; border-radius: 999px; background-color: var(--secondary); transition: background-color 0.2s ease; }
.vt-step-dot.is-active { background-color: var(--primary); }
.vt-step-label { font-size: 0.75rem; color: var(--muted-foreground); text-align: center; margin-bottom: 1.25rem; font-weight: 500; }

.vt-field { margin-bottom: 1.1rem; }
.vt-field label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.4rem; }
.vt-field .req { color: var(--primary); }
.vt-input, .vt-select, .vt-textarea {
  width: 100%;
  background-color: color-mix(in oklab, var(--background) 60%, transparent);
  border: 1px solid var(--input);
  border-radius: var(--radius);
  color: var(--foreground);
  padding: 0.65rem 0.8rem;
  font-family: inherit;
  font-size: 0.95rem;
}
.vt-input:focus, .vt-select:focus, .vt-textarea:focus { outline: none; border-color: var(--primary); }
.vt-textarea { min-height: 6rem; resize: vertical; }
.vt-field-grid { display: grid; gap: 1.1rem; }
@media (min-width: 560px) { .vt-field-grid.cols-2 { grid-template-columns: 1fr 1fr; } }

/* Role selector cards */
.vt-role-grid { display: grid; gap: 0.75rem; margin-bottom: 0.5rem; }
@media (min-width: 560px) { .vt-role-grid { grid-template-columns: repeat(2, 1fr); } }
.vt-role { border: 1px solid var(--border); background-color: color-mix(in oklab, var(--background) 50%, transparent); border-radius: 0.8rem; padding: 1rem; cursor: pointer; transition: border-color 0.15s ease; }
.vt-role:hover { border-color: color-mix(in oklab, var(--primary) 50%, var(--border)); }
.vt-role input { position: absolute; opacity: 0; }
.vt-role.is-selected { border-color: var(--primary); background-color: color-mix(in oklab, var(--primary) 10%, transparent); }
.vt-role h4 { font-size: 0.98rem; }
.vt-role p { margin-top: 0.25rem; font-size: 0.82rem; color: var(--muted-foreground); }

.vt-form-actions { display: flex; justify-content: space-between; gap: 0.75rem; margin-top: 1.5rem; }
.vt-form-actions .vt-btn { flex: 1; }

.vt-review dl { display: grid; gap: 0.6rem; }
.vt-review__row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; border-bottom: 1px solid color-mix(in oklab, var(--border) 55%, transparent); font-size: 0.9rem; }
.vt-review__row dt { color: var(--muted-foreground); }
.vt-review__row dd { margin: 0; text-align: right; font-weight: 500; }

.vt-notice { border-radius: var(--radius); padding: 0.9rem 1rem; font-size: 0.9rem; margin-bottom: 1.5rem; }
.vt-notice--ok { background-color: color-mix(in oklab, var(--primary) 12%, transparent); border: 1px solid color-mix(in oklab, var(--primary) 40%, transparent); color: var(--foreground); }
.vt-notice--err { background-color: color-mix(in oklab, oklch(0.62 0.21 25) 12%, transparent); border: 1px solid color-mix(in oklab, oklch(0.62 0.21 25) 45%, transparent); color: var(--foreground); }

/* =========================================================================
   Footer
   ========================================================================= */
.vt-footer { border-top: 1px solid var(--border); padding-block: 3rem; }
.vt-footer__grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .vt-footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.vt-footer p { color: var(--muted-foreground); font-size: 0.9rem; margin-top: 0.75rem; max-width: 22rem; }
.vt-footer h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-foreground); margin-bottom: 0.9rem; }
.vt-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.vt-footer ul a { color: var(--foreground); font-size: 0.9rem; }
.vt-footer ul a:hover { color: var(--primary); }
.vt-footer__bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.8rem; color: var(--muted-foreground); }
@media (min-width: 640px) { .vt-footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; } }

/* =========================================================================
   Scroll reveal
   ========================================================================= */
.vt-reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.vt-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .vt-reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}


/* =========================================================================
   Vantyr Performance additions
   ========================================================================= */
body { overflow-x: hidden; }
.vt-header { position: fixed; inset: 0 0 auto; }
.admin-bar .vt-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .vt-header { top: 46px; } }
.vt-hero {
  position: relative;
  overflow: hidden;
  padding-top: 8.5rem;
  padding-bottom: 5rem;
  border-top: 0;
}
.vt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 50% 0%, color-mix(in oklab, var(--primary) 18%, transparent), transparent 70%),
    linear-gradient(to right, color-mix(in oklab, var(--border) 30%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in oklab, var(--border) 25%, transparent) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  mask-image: radial-gradient(75% 70% at 50% 0%, black, transparent);
  opacity: .7;
}
.vt-hero__inner { position: relative; }
.vt-hero__copy { max-width: 48rem; margin-inline: auto; text-align: center; }
.vt-hero__lead { margin-inline: auto; }
.vt-hero__actions { justify-content: center; }
.vt-audience__card { display: flex; flex-direction: column; min-height: 15.5rem; }
.vt-audience__card p { flex: 1; }
.vt-logo__mark { overflow: hidden; }
.vt-logo__mark svg { width: 1.25rem; height: 1.25rem; }
.vt-icon { width: 1.2rem; height: 1.2rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.vt-icon--sm { width: 1rem; height: 1rem; }
.vt-section-heading--center { text-align: center; margin-inline: auto; }
.vt-section-heading--center .vt-subtitle { margin-inline: auto; }
.vt-copy { color: var(--muted-foreground); }
.vt-copy p + p { margin-top: 1rem; }
.vt-empty {
  margin-top: 2rem;
  border: 1px dashed color-mix(in oklab, var(--primary) 45%, var(--border));
  border-radius: 1rem;
  background: linear-gradient(180deg, color-mix(in oklab, var(--primary) 8%, var(--card)), var(--card));
  padding: 2rem;
  text-align: center;
}
.vt-empty__icon { display: grid; place-items: center; width: 3rem; height: 3rem; margin: 0 auto 1rem; border-radius: .85rem; background: color-mix(in oklab, var(--primary) 14%, transparent); color: var(--primary); }
.vt-empty h3 { font-size: 1.25rem; }
.vt-empty p { max-width: 35rem; margin: .6rem auto 0; color: var(--muted-foreground); font-size: .92rem; }
.vt-podium.is-empty .vt-person__name,
.vt-podium.is-empty dd { color: var(--muted-foreground); }
.vt-podium.is-empty .vt-avatar { color: var(--muted-foreground); }
.vt-team__value.is-empty { color: var(--muted-foreground); }
.vt-about-note { margin-top: 1.5rem; display: flex; gap: .75rem; align-items: flex-start; border: 1px solid var(--border); border-radius: .85rem; background: var(--card); padding: 1rem; color: var(--muted-foreground); font-size: .9rem; }
.vt-about-note strong { color: var(--foreground); }
.vt-mission { margin-top: 3.5rem; border: 1px solid var(--border); border-radius: 1rem; background: linear-gradient(180deg, var(--card), var(--background)); padding: 2rem; text-align: center; }
.vt-mission__icon { display: grid; place-items: center; width: 2.75rem; height: 2.75rem; margin: 0 auto; border-radius: .75rem; background: color-mix(in oklab, var(--primary) 14%, transparent); color: var(--primary); }
.vt-mission p { max-width: 46rem; margin: 1rem auto 0; color: var(--muted-foreground); font-size: 1.08rem; }
.vt-audience-detail { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .vt-audience-detail { grid-template-columns: .9fr 1.1fr; gap: 4rem; } .vt-audience-detail.is-reverse > :first-child { order: 2; } }
.vt-check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.vt-check-list li { display: flex; gap: .75rem; align-items: flex-start; border: 1px solid var(--border); background: var(--card); border-radius: .85rem; padding: 1rem; font-weight: 600; font-size: .92rem; }
.vt-check { display: grid; place-items: center; flex: 0 0 1.75rem; height: 1.75rem; border-radius: .45rem; background: color-mix(in oklab, var(--primary) 14%, transparent); color: var(--primary); }
.vt-report__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.vt-report__head p { color: var(--muted-foreground); font-size: .75rem; margin-top: .15rem; }
.vt-report__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
.vt-report__metric { border: 1px solid var(--border); border-radius: .7rem; background: color-mix(in oklab, var(--background) 60%, transparent); padding: 1rem; }
.vt-report__metric span { display: block; color: var(--muted-foreground); font-size: .66rem; text-transform: uppercase; letter-spacing: .05em; }
.vt-report__metric strong { display: block; margin-top: .25rem; font-family: var(--font-display); font-size: 1.4rem; }
.vt-report__metric.is-accent { border-color: color-mix(in oklab, var(--primary) 45%, transparent); background: color-mix(in oklab, var(--primary) 9%, transparent); }
.vt-report__metric.is-accent strong { color: var(--primary); }
.vt-report__note { margin-top: 1rem; color: var(--muted-foreground); font-size: .72rem; }
.vt-form-intro { text-align: center; max-width: 43rem; margin-inline: auto; }
.vt-form-intro .vt-subtitle { margin-inline: auto; }
.vt-role-grid { grid-template-columns: 1fr; }
@media (min-width: 560px) { .vt-role-grid { grid-template-columns: repeat(2, 1fr); } }
.vt-role { position: relative; display: block; }
.vt-role.is-selected::after { content: '✓'; position: absolute; top: .8rem; right: .85rem; color: var(--primary); font-weight: 800; }
.vt-field small { display: block; margin-top: .35rem; color: var(--muted-foreground); font-size: .72rem; }
.vt-file { padding: .5rem; }
.vt-file::file-selector-button { border: 0; border-radius: .4rem; background: var(--primary); color: var(--primary-foreground); padding: .5rem .75rem; margin-right: .75rem; font-weight: 700; cursor: pointer; }
.vt-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.vt-form-help { margin-top: 1rem; text-align: center; color: var(--muted-foreground); font-size: .75rem; }
.vt-form-help a { color: var(--primary); }
.vt-page { padding: 8rem 0 5rem; min-height: 70vh; }
.vt-page__content { max-width: 48rem; }
.vt-page__content h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.vt-page__content h2 { margin-top: 2rem; font-size: 1.4rem; }
.vt-page__content p, .vt-page__content li { color: var(--muted-foreground); }
.vt-page__content p { margin-top: 1rem; }
.vt-page__content a { color: var(--primary); text-decoration: underline; }
.vt-footer__email { display: inline-flex; margin-top: 1rem; color: var(--primary); font-weight: 600; }
.vt-footer__email:hover { text-decoration: underline; }
.vt-table-empty { padding: 1.5rem; text-align: center; color: var(--muted-foreground); }
@media (max-width: 640px) {
  .vt-hero { padding-top: 7.5rem; }
  .vt-hero__actions .vt-btn { width: 100%; }
  .vt-form-wrap { padding: 1.25rem; }
  .vt-form-actions { flex-direction: column-reverse; }
  .vt-review__row { flex-direction: column; gap: .15rem; }
  .vt-review__row dd { text-align: left; }
}
