/*
Theme Name: VIT Solutions
Theme URI: https://vitsolutions.com.au/
Author: VIT Solutions
Description: Bespoke, performance-first WordPress theme for VIT Solutions.
Version: 1.0.0
Requires at least: 6.7
Requires PHP: 8.3
Text Domain: vit-solutions
*/

:root {
  --vit-ink: #06111f;
  --vit-ink-2: #0b1d31;
  --vit-ink-3: #112b45;
  --vit-paper: #f6f8fb;
  --vit-white: #ffffff;
  --vit-text: #122033;
  --vit-muted: #5d6b7b;
  --vit-line: #dce4ec;
  --vit-cyan: #77e6ee;
  --vit-blue: #2a8bdc;
  --vit-orange: #f5a623;
  --vit-red: #e31b35;
  --vit-green: #2ed6a1;
  --vit-radius-sm: 14px;
  --vit-radius-md: 24px;
  --vit-radius-lg: 38px;
  --vit-shadow: 0 24px 70px rgba(6, 17, 31, 0.14);
  --vit-container: 1240px;
  --vit-wide: 1440px;
  --vit-header-height: 82px;
  --vit-ease: cubic-bezier(.2, .75, .25, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--vit-text);
  background: var(--vit-paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .vit-site-header { top: 32px; }

img,
svg { display: block; max-width: 100%; }

button,
input,
select,
textarea { font: inherit; }

a { color: inherit; }

h1,
h2,
h3,
h4,
p { margin-top: 0; }

h1,
h2,
h3,
h4 {
  color: inherit;
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: 1.03;
}

h1 { font-size: clamp(3rem, 7.3vw, 6.9rem); }
h2 { font-size: clamp(2.25rem, 5vw, 4.7rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 2rem); }

::selection { color: var(--vit-ink); background: var(--vit-cyan); }

:focus-visible {
  outline: 3px solid var(--vit-orange);
  outline-offset: 4px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  clip: auto !important;
  width: auto;
  height: auto;
  top: 12px;
  left: 12px;
  z-index: 100000;
  padding: 12px 18px;
  color: var(--vit-ink);
  background: var(--vit-cyan);
  border-radius: 10px;
}

.vit-container {
  width: min(var(--vit-container), calc(100% - 48px));
  margin-inline: auto;
}

.vit-container--wide { width: min(var(--vit-wide), calc(100% - 48px)); }

.vit-section { position: relative; padding: clamp(78px, 9vw, 132px) 0; }

.vit-section--dark { color: #eaf3ff; background: var(--vit-ink); }
.vit-section--ink { color: #eaf3ff; background: var(--vit-ink-2); }
.vit-section--white { background: var(--vit-white); }
.vit-section--soft { background: #eef3f7; }

.vit-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #147394;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.vit-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 20px currentColor;
}

.vit-section--dark .vit-eyebrow,
.vit-section--ink .vit-eyebrow,
.vit-hero .vit-eyebrow,
.vit-page-hero .vit-eyebrow { color: var(--vit-cyan); }

.vit-section-heading { max-width: 800px; margin-bottom: clamp(36px, 5vw, 64px); }
.vit-section-heading--center { margin-inline: auto; text-align: center; }
.vit-section-heading h2 { margin-bottom: 20px; }
.vit-section-heading p:last-child { margin-bottom: 0; }

.vit-lead {
  color: var(--vit-muted);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}

.vit-section--dark .vit-lead,
.vit-section--ink .vit-lead,
.vit-page-hero .vit-lead { color: rgba(234, 243, 255, .72); }

.vit-kicker-line { width: 72px; height: 3px; margin-bottom: 24px; border-radius: 4px; background: linear-gradient(90deg, var(--vit-cyan), var(--vit-orange)); }

/* Header */
.vit-site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  color: #edf6ff;
  background: rgba(6, 17, 31, .84);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px) saturate(140%);
  transition: background .25s ease, box-shadow .25s ease;
}

.vit-site-header.is-scrolled { background: rgba(6, 17, 31, .96); box-shadow: 0 12px 35px rgba(0, 0, 0, .2); }

.vit-header-inner {
  min-height: var(--vit-header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.vit-logo { display: inline-flex; align-items: center; color: #fff; text-decoration: none; }
.vit-logo .vit-logo__image { width: auto; height: 62px; }
.vit-site-footer .vit-logo .vit-logo__image { height: 74px; }

.vit-primary-nav { justify-self: end; }
.vit-primary-nav ul { display: flex; align-items: center; gap: 7px; margin: 0; padding: 0; list-style: none; }
.vit-primary-nav a { display: block; padding: 10px 13px; color: rgba(234, 243, 255, .78); font-size: .9rem; font-weight: 720; text-decoration: none; border-radius: 999px; transition: color .2s ease, background .2s ease; }
.vit-primary-nav a:hover,
.vit-primary-nav .current-menu-item > a,
.vit-primary-nav .current_page_item > a { color: #fff; background: rgba(255, 255, 255, .08); }

.vit-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  cursor: pointer;
}
.vit-menu-toggle span,
.vit-menu-toggle::before,
.vit-menu-toggle::after { content: ""; display: block; width: 21px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.vit-menu-toggle[aria-expanded="true"] span { opacity: 0; }
.vit-menu-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.vit-menu-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.vit-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.vit-actions--center { justify-content: center; }
.vit-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  color: var(--vit-ink);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s var(--vit-ease), box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.vit-button:hover { transform: translateY(-2px); }
.vit-button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 2; }
.vit-button--primary { color: var(--vit-ink); background: linear-gradient(135deg, var(--vit-cyan), #fff); box-shadow: 0 16px 36px rgba(119, 230, 238, .2); }
.vit-button--primary:hover { box-shadow: 0 19px 42px rgba(119, 230, 238, .3); }
.vit-button--secondary { color: #fff; background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .16); }
.vit-button--outline { color: var(--vit-ink); border-color: rgba(6, 17, 31, .18); background: rgba(255, 255, 255, .45); }
.vit-button--small { min-height: 42px; padding: 11px 18px; font-size: .8rem; }

/* Hero */
.vit-hero {
  position: relative;
  min-height: min(900px, calc(100vh - var(--vit-header-height)));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 15%, rgba(119, 230, 238, .18), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(245, 166, 35, .14), transparent 28%),
    radial-gradient(circle at 75% 82%, rgba(42, 139, 220, .18), transparent 34%),
    linear-gradient(135deg, #06111f, #0b1f35 53%, #07121f);
}

.vit-hero::before,
.vit-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.vit-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); gap: clamp(42px, 6vw, 92px); align-items: center; padding-block: clamp(78px, 9vw, 130px); }
.vit-hero-copy h1 { max-width: 820px; margin-bottom: 28px; }
.vit-hero-copy h1 em { color: var(--vit-cyan); font-style: normal; }
.vit-hero-copy .vit-lead { max-width: 700px; margin-bottom: 30px; }
.vit-pill-row { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; }
.vit-pill-row span { padding: 9px 13px; color: #dffcff; background: rgba(255, 255, 255, .065); border: 1px solid rgba(119, 230, 238, .2); border-radius: 999px; font-size: .78rem; font-weight: 760; }

.vit-hero-visual { position: relative; min-height: 560px; }
.vit-hero-system { position: absolute; inset: 0; width: 100%; height: 100%; filter: drop-shadow(0 32px 60px rgba(0,0,0,.35)); }
.vit-float-card { position: absolute; z-index: 2; min-width: 175px; padding: 18px; color: #eef8ff; background: rgba(12, 31, 52, .76); border: 1px solid rgba(255,255,255,.13); border-radius: 20px; box-shadow: 0 22px 45px rgba(0,0,0,.24); backdrop-filter: blur(15px); }
.vit-float-card--one { top: 9%; right: -3%; }
.vit-float-card--two { bottom: 8%; left: -5%; }
.vit-float-card small { display: block; margin-bottom: 7px; color: var(--vit-cyan); font-size: .64rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.vit-float-card strong { display: block; font-size: 1rem; line-height: 1.28; }
.vit-signal { display: flex; gap: 4px; align-items: end; height: 26px; margin-top: 12px; }
.vit-signal i { width: 5px; border-radius: 4px; background: linear-gradient(var(--vit-cyan), var(--vit-blue)); }
.vit-signal i:nth-child(1) { height: 36%; }.vit-signal i:nth-child(2) { height: 58%; }.vit-signal i:nth-child(3) { height: 42%; }.vit-signal i:nth-child(4) { height: 86%; }.vit-signal i:nth-child(5) { height: 68%; }.vit-signal i:nth-child(6) { height: 100%; }

/* Proof strip */
.vit-proof-strip { position: relative; z-index: 2; margin-top: -36px; }
.vit-proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border: 1px solid var(--vit-line); border-radius: 24px; box-shadow: var(--vit-shadow); overflow: hidden; }
.vit-proof-item { padding: 26px 24px; border-right: 1px solid var(--vit-line); }
.vit-proof-item:last-child { border-right: 0; }
.vit-proof-item strong { display: block; margin-bottom: 5px; color: var(--vit-ink); font-size: 1rem; }
.vit-proof-item span { color: var(--vit-muted); font-size: .84rem; }

/* Cards and grids */
.vit-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.vit-card-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.vit-card {
  position: relative;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--vit-line);
  border-radius: var(--vit-radius-md);
  box-shadow: 0 14px 40px rgba(6, 17, 31, .06);
  overflow: hidden;
  transition: transform .25s var(--vit-ease), box-shadow .25s ease, border-color .25s ease;
}
.vit-card:hover { transform: translateY(-6px); border-color: #b9ccd9; box-shadow: 0 24px 55px rgba(6, 17, 31, .11); }
.vit-card::after { content: ""; position: absolute; width: 160px; height: 160px; right: -95px; bottom: -105px; border-radius: 50%; background: radial-gradient(circle, rgba(119,230,238,.18), transparent 68%); }
.vit-card__icon { width: 68px; height: 68px; margin-bottom: 28px; padding: 13px; border-radius: 19px; background: linear-gradient(145deg, var(--vit-ink-2), var(--vit-ink)); box-shadow: 0 15px 30px rgba(6,17,31,.17); }
.vit-card h3 { margin-bottom: 14px; color: var(--vit-ink); }
.vit-card p { margin-bottom: 0; color: var(--vit-muted); }
.vit-card__number { display: block; margin-bottom: 24px; color: #1683a3; font-size: .73rem; font-weight: 900; letter-spacing: .15em; }
.vit-card--featured { color: #eaf3ff; background: linear-gradient(145deg, var(--vit-ink-2), var(--vit-ink-3)); border-color: rgba(255,255,255,.08); }
.vit-card--featured h3 { color: #fff; }
.vit-card--featured p { color: rgba(234,243,255,.68); }

/* Brand/product panels */
.vit-brand-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.vit-brand-card { display: grid; grid-template-rows: auto 1fr; overflow: hidden; color: #eaf3ff; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.12); border-radius: 30px; box-shadow: 0 28px 60px rgba(0,0,0,.2); }
.vit-brand-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #0d1b2b; }
.vit-brand-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--vit-ease); }
.vit-brand-card:hover .vit-brand-media img { transform: scale(1.035); }
.vit-brand-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,17,31,.45), transparent 45%); pointer-events: none; }
.vit-brand-copy { padding: 32px; }
.vit-brand-label { margin-bottom: 15px; color: var(--vit-cyan); font-size: .72rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.vit-brand-copy h3 { margin-bottom: 16px; color: #fff; }
.vit-brand-copy > p:not(.vit-brand-label) { color: rgba(234,243,255,.7); }
.vit-text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--vit-cyan); font-weight: 850; text-decoration: none; }
.vit-text-link::after { content: "→"; transition: transform .2s ease; }
.vit-text-link:hover::after { transform: translateX(5px); }

/* Split sections */
.vit-split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(42px, 8vw, 110px); align-items: center; }
.vit-split--reverse > :first-child { order: 2; }
.vit-split h2 { margin-bottom: 24px; }
.vit-split-copy > p { color: var(--vit-muted); }
.vit-check-list { display: grid; gap: 14px; margin: 30px 0 0; padding: 0; list-style: none; }
.vit-check-list li { position: relative; padding-left: 33px; color: var(--vit-text); font-weight: 680; }
.vit-check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 23px; height: 23px; display: grid; place-items: center; color: var(--vit-ink); background: var(--vit-cyan); border-radius: 50%; font-size: .75rem; font-weight: 900; }

.vit-data-panel { position: relative; min-height: 470px; padding: 28px; color: #eaf3ff; background: linear-gradient(145deg, var(--vit-ink), var(--vit-ink-3)); border: 1px solid rgba(255,255,255,.1); border-radius: var(--vit-radius-lg); box-shadow: var(--vit-shadow); overflow: hidden; }
.vit-data-panel::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 34px 34px; }
.vit-data-panel__top { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 36px; }
.vit-live-dot { display: inline-flex; align-items: center; gap: 8px; color: var(--vit-green); font-size: .7rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.vit-live-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 14px currentColor; }
.vit-chart { position: relative; height: 210px; margin-bottom: 26px; }
.vit-chart svg { width: 100%; height: 100%; }
.vit-data-metrics { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.vit-data-metrics div { padding: 15px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 15px; }
.vit-data-metrics small { display: block; color: rgba(234,243,255,.55); font-size: .68rem; }
.vit-data-metrics strong { display: block; margin-top: 4px; font-size: 1.05rem; }

.vit-editorial-media { position: relative; min-height: 470px; margin: 0; overflow: hidden; background: var(--vit-ink); border: 1px solid rgba(6,17,31,.08); border-radius: var(--vit-radius-lg); box-shadow: var(--vit-shadow); }
.vit-editorial-media::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(to top, rgba(4,11,19,.92), rgba(4,11,19,.5) 54%, transparent); pointer-events: none; }
.vit-editorial-media img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; transition: transform .8s var(--vit-ease); }
.vit-editorial-media:hover img { transform: scale(1.018); }
.vit-editorial-media figcaption { position: absolute; z-index: 1; left: clamp(22px, 4vw, 38px); right: clamp(22px, 4vw, 38px); bottom: clamp(22px, 4vw, 34px); color: #fff; }
.vit-editorial-media figcaption span { display: block; margin-bottom: 9px; color: var(--vit-cyan); font-size: .69rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.vit-editorial-media figcaption strong { display: block; max-width: 560px; font-size: clamp(1.25rem, 2.4vw, 1.8rem); line-height: 1.25; }

/* Page hero */
.vit-page-hero { position: relative; overflow: hidden; padding: clamp(90px, 11vw, 150px) 0 clamp(76px, 9vw, 120px); color: #fff; background: radial-gradient(circle at 78% 20%, rgba(42,139,220,.2), transparent 30%), radial-gradient(circle at 12% 30%, rgba(119,230,238,.13), transparent 28%), var(--vit-ink); }
.vit-page-hero .vit-container { position: relative; z-index: 1; }
.vit-page-hero h1 { max-width: 1000px; margin-bottom: 26px; font-size: clamp(3.2rem, 7vw, 6.6rem); }
.vit-page-hero .vit-lead { max-width: 780px; margin-bottom: 0; }
.vit-page-hero--compact h1 { font-size: clamp(2.8rem, 6vw, 5.3rem); }

/* Process */
.vit-process { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: process; }
.vit-process::before { content: ""; position: absolute; left: 8%; right: 8%; top: 34px; height: 1px; background: linear-gradient(90deg, transparent, var(--vit-blue), var(--vit-cyan), transparent); }
.vit-process-step { position: relative; padding: 0 12px; counter-increment: process; }
.vit-process-step::before { content: "0" counter(process); position: relative; z-index: 1; width: 68px; height: 68px; display: grid; place-items: center; margin-bottom: 25px; color: var(--vit-ink); background: linear-gradient(135deg, var(--vit-cyan), #fff); border: 8px solid #eef3f7; border-radius: 50%; font-size: .76rem; font-weight: 900; }
.vit-process-step h3 { margin-bottom: 12px; font-size: 1.35rem; }
.vit-process-step p { margin-bottom: 0; color: var(--vit-muted); font-size: .92rem; }

/* Lists, details and article content */
.vit-detail-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.vit-detail-list li { padding: 18px 20px; background: rgba(255,255,255,.7); border: 1px solid var(--vit-line); border-radius: 14px; }
.vit-detail-list strong { display: block; margin-bottom: 4px; color: var(--vit-ink); }
.vit-detail-list span { color: var(--vit-muted); font-size: .9rem; }
.vit-faq { display: grid; gap: 12px; max-width: 900px; margin-inline: auto; }
.vit-faq details { padding: 0 24px; background: #fff; border: 1px solid var(--vit-line); border-radius: 16px; }
.vit-faq summary { padding: 22px 38px 22px 0; font-weight: 800; cursor: pointer; }
.vit-faq details p { padding-bottom: 22px; color: var(--vit-muted); }

.vit-article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.vit-article-card { display: flex; flex-direction: column; min-height: 100%; padding: 28px; color: var(--vit-text); background: #fff; border: 1px solid var(--vit-line); border-radius: 22px; box-shadow: 0 13px 35px rgba(6,17,31,.05); }
.vit-article-card time,
.vit-article-meta { color: #147394; font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.vit-article-card h2,
.vit-article-card h3 { margin: 16px 0; color: var(--vit-ink); font-size: clamp(1.45rem, 2.4vw, 2rem); }
.vit-article-card p { color: var(--vit-muted); }
.vit-article-card .vit-text-link { margin-top: auto; }

.vit-prose { width: min(820px, calc(100% - 48px)); margin-inline: auto; padding: clamp(70px, 8vw, 110px) 0; }
.vit-prose > * { max-width: 100%; }
.vit-prose p,
.vit-prose li { color: #38485a; font-size: 1.08rem; line-height: 1.8; }
.vit-prose h2 { margin: 2.1em 0 .6em; font-size: clamp(2rem, 4vw, 3.2rem); }
.vit-prose h3 { margin: 1.8em 0 .6em; }
.vit-prose a { color: #0e759b; font-weight: 700; }
.vit-prose blockquote { margin: 38px 0; padding: 25px 30px; background: #edf6f8; border-left: 4px solid var(--vit-cyan); border-radius: 0 18px 18px 0; }

/* Contact */
.vit-contact-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); gap: 28px; align-items: start; }
.vit-contact-card { padding: clamp(26px, 4vw, 44px); background: #fff; border: 1px solid var(--vit-line); border-radius: 28px; box-shadow: var(--vit-shadow); }
.vit-contact-aside { display: grid; gap: 18px; }
.vit-info-card { padding: 26px; background: var(--vit-ink-2); color: #eaf3ff; border: 1px solid rgba(255,255,255,.08); border-radius: 22px; }
.vit-info-card small { display: block; margin-bottom: 10px; color: var(--vit-cyan); font-size: .7rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.vit-info-card h2,
.vit-info-card h3 { margin-bottom: 12px; color: #fff; font-size: 1.4rem; }
.vit-info-card p { margin-bottom: 0; color: rgba(234,243,255,.67); }
.vit-info-card a { color: var(--vit-cyan); font-weight: 750; }

.vit-contact-form { position: relative; }
.vit-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.vit-field { display: grid; gap: 8px; }
.vit-field--full { grid-column: 1 / -1; }
.vit-field label { color: var(--vit-ink); font-size: .86rem; font-weight: 800; }
.vit-optional { color: var(--vit-muted); font-size: .75rem; font-weight: 500; }
.vit-field input,
.vit-field select,
.vit-field textarea { width: 100%; color: var(--vit-text); background: #f8fafc; border: 1px solid #cad6e1; border-radius: 13px; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.vit-field input,
.vit-field select { min-height: 52px; padding: 11px 14px; }
.vit-field textarea { min-height: 170px; padding: 14px; resize: vertical; }
.vit-field input:focus,
.vit-field select:focus,
.vit-field textarea:focus { background: #fff; border-color: #2b91b4; box-shadow: 0 0 0 4px rgba(119,230,238,.2); }
.vit-field small { color: var(--vit-muted); font-size: .77rem; }
.vit-consent label { display: flex; gap: 12px; align-items: flex-start; color: var(--vit-muted); font-weight: 500; }
.vit-consent input { width: 20px; min-height: 20px; flex: 0 0 auto; margin-top: 3px; }
.vit-consent a { color: #0e759b; font-weight: 700; }
.vit-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.vit-turnstile { min-height: 65px; margin: 24px 0 18px; }
.vit-button--submit { border: 0; }
.vit-button--submit[disabled] { opacity: .62; cursor: wait; transform: none; }
.vit-form-note { margin: 14px 0 0; color: var(--vit-muted); font-size: .75rem; }
.vit-form-alert { margin-bottom: 24px; padding: 14px 17px; color: #6d101e; background: #fff0f2; border: 1px solid #ffc7cf; border-radius: 12px; font-weight: 700; }

/* CTA and footer */
.vit-cta { position: relative; overflow: hidden; padding: clamp(70px, 8vw, 110px) 0; color: #fff; background: linear-gradient(135deg, #0b2138, #07111f); }
.vit-cta::after { content: ""; position: absolute; width: 520px; height: 520px; right: -210px; top: -290px; border: 1px solid rgba(119,230,238,.17); border-radius: 50%; box-shadow: 0 0 0 70px rgba(119,230,238,.03), 0 0 0 140px rgba(245,166,35,.025); }
.vit-cta-inner { position: relative; z-index: 1; max-width: 880px; text-align: center; }
.vit-cta h2 { margin-bottom: 22px; color: #fff; }
.vit-cta p { max-width: 680px; margin: 0 auto 30px; color: rgba(234,243,255,.7); font-size: 1.12rem; }

.vit-site-footer { color: rgba(234,243,255,.67); background: #040b13; }
.vit-footer-main { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 42px; padding: 70px 0 50px; }
.vit-footer-brand p { max-width: 370px; margin-top: 20px; }
.vit-footer-column h2 { margin-bottom: 18px; color: #fff; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; }
.vit-footer-column ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.vit-footer-column a { text-decoration: none; }
.vit-footer-column a:hover { color: var(--vit-cyan); }
.vit-footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.08); font-size: .78rem; }
.vit-footer-bottom p { margin: 0; }

/* Utility visual blocks */
.vit-tag { display: inline-flex; padding: 7px 11px; color: #0d6b8b; background: #e3f7f8; border-radius: 999px; font-size: .7rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.vit-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vit-stat { padding: 24px; background: #fff; border: 1px solid var(--vit-line); border-radius: 18px; }
.vit-stat strong { display: block; color: var(--vit-ink); font-size: clamp(1.7rem, 3vw, 2.7rem); letter-spacing: -.05em; }
.vit-stat span { color: var(--vit-muted); font-size: .8rem; }
.vit-empty { padding: 40px; text-align: center; color: var(--vit-muted); background: #fff; border: 1px solid var(--vit-line); border-radius: 20px; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s var(--vit-ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .vit-header-cta { display: none; }
  .vit-header-inner { grid-template-columns: auto 1fr; }
  .vit-hero-grid { grid-template-columns: 1fr minmax(370px, .8fr); }
  .vit-card-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vit-footer-main { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .vit-footer-column:last-child { grid-column: 2 / -1; }
}

@media (max-width: 900px) {
  :root { --vit-header-height: 72px; }
  body.admin-bar .vit-site-header { top: 46px; }
  .vit-header-inner { grid-template-columns: auto auto; justify-content: space-between; }
  .vit-menu-toggle { display: block; }
  .vit-primary-nav { position: absolute; left: 24px; right: 24px; top: calc(100% + 10px); display: none; padding: 16px; background: rgba(6,17,31,.98); border: 1px solid rgba(255,255,255,.11); border-radius: 18px; box-shadow: 0 20px 55px rgba(0,0,0,.32); }
  .vit-primary-nav.is-open { display: block; }
  .vit-primary-nav ul { align-items: stretch; flex-direction: column; }
  .vit-primary-nav a { padding: 13px 15px; }
  .vit-hero { min-height: auto; }
  .vit-hero-grid { grid-template-columns: 1fr; }
  .vit-hero-copy { max-width: 760px; }
  .vit-hero-visual { min-height: 520px; width: min(620px, 100%); margin-inline: auto; }
  .vit-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .vit-proof-item:nth-child(2) { border-right: 0; }
  .vit-proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--vit-line); }
  .vit-card-grid,
  .vit-article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vit-split,
  .vit-contact-layout { grid-template-columns: 1fr; }
  .vit-split--reverse > :first-child { order: 0; }
  .vit-process { grid-template-columns: repeat(2, 1fr); gap: 36px 18px; }
  .vit-process::before { display: none; }
  .vit-footer-main { grid-template-columns: repeat(2, 1fr); }
  .vit-footer-brand { grid-column: 1 / -1; }
  .vit-footer-column:last-child { grid-column: auto; }
}

@media (max-width: 640px) {
  .vit-container,
  .vit-container--wide,
  .vit-prose { width: min(100% - 30px, var(--vit-container)); }
  .vit-logo .vit-logo__image { height: 52px; }
  .vit-hero-grid { padding-block: 66px 90px; }
  .vit-hero-copy h1 { font-size: clamp(2.85rem, 14vw, 4.4rem); }
  .vit-hero-visual { min-height: 390px; }
  .vit-float-card { min-width: 145px; padding: 14px; }
  .vit-float-card--one { right: 0; }
  .vit-float-card--two { left: 0; }
  .vit-proof-strip { margin-top: -24px; }
  .vit-proof-grid,
  .vit-card-grid,
  .vit-card-grid--four,
  .vit-brand-grid,
  .vit-article-grid,
  .vit-process,
  .vit-stat-grid,
  .vit-data-metrics,
  .vit-form-grid,
  .vit-footer-main { grid-template-columns: 1fr; }
  .vit-proof-item { border-right: 0; border-bottom: 1px solid var(--vit-line); }
  .vit-proof-item:nth-child(3) { border-bottom: 1px solid var(--vit-line); }
  .vit-proof-item:last-child { border-bottom: 0; }
  .vit-card,
  .vit-brand-copy,
  .vit-contact-card { padding: 24px; }
  .vit-page-hero { padding-block: 74px 72px; }
  .vit-page-hero h1 { font-size: clamp(2.75rem, 14vw, 4.5rem); }
  .vit-data-panel { min-height: 420px; padding: 22px; }
  .vit-editorial-media,
  .vit-editorial-media img { min-height: 390px; }
  .vit-field--full { grid-column: auto; }
  .vit-footer-brand,
  .vit-footer-column:last-child { grid-column: auto; }
  .vit-footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .vit-site-header,
  .vit-site-footer,
  .vit-cta,
  .vit-actions { display: none !important; }
  body { color: #000; background: #fff; }
}
