/* voxwinai layout v20260430 */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.site-header {
  background: var(--vw-navy);
  height: 64px;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--vw-navy-deep);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.brand-mark {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 12px;
}
.brand-mark img {
  height: 64px;
  max-height: 100%;
  width: auto;
  display: block;
  transition: transform 0.2s ease, filter 0.2s ease;
  animation: vw-logo-pulse 4s ease-in-out infinite;
}
.brand-mark:hover img {
  transform: scale(1.03);
  filter: brightness(1.15);
}
.brand-mark .brand-text {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--vw-silver);
  letter-spacing: 0.02em;
  line-height: 1;
}
@keyframes vw-logo-pulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.08); }
}
.logo-link { display: flex; align-items: center; height: 100%; }
.site-nav { display: flex; gap: 32px; align-items: center; }
.site-nav a {
  color: var(--vw-silver);
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.site-nav a:hover { color: var(--vw-white); text-decoration: none; }

.hero {
  background: var(--vw-navy);
  color: var(--vw-white);
  padding: 56px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  color: var(--vw-white);
  margin-bottom: 24px;
  max-width: 800px;
}
.hero .lede {
  font-size: 1.25rem;
  color: var(--vw-silver);
  max-width: 720px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.section {
  padding: 56px 0;
}
.section-light { background: var(--vw-gray-50); }
.section-dark { background: var(--vw-navy); color: var(--vw-silver); }
.section-dark h2 { color: var(--vw-white); }

.section h2 {
  text-align: center;
  margin-bottom: 16px;
}
.section .subhead {
  text-align: center;
  color: var(--vw-gray-700);
  max-width: 640px;
  margin: 0 auto 56px;
  font-size: 1.125rem;
}
.section-dark .subhead { color: var(--vw-silver); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.site-footer {
  background: var(--vw-navy-deep);
  color: var(--vw-silver);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo {
  display: block;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.footer-col-title {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vw-white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--vw-silver); }
.footer-col a:hover { color: var(--vw-white); text-decoration: none; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(201, 209, 217, 0.15);
  font-size: 0.875rem;
  color: var(--vw-silver);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-nav { display: none; }
  .hero { padding: 56px 0 72px; }
}
