@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=Space+Grotesk:wght@500;700&display=swap');

.vy-page {
  background: #000;
  color: #fff;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0;
}

.vy-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.vy-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(10px);
}

.vy-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.vy-container-wide {
  width: min(1680px, calc(100% - 48px));
  margin: 0 auto;
}

.vy-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.vy-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.vy-logo-image {
  width: 140px;
  height: auto;
  display: block;
}

.vy-brand-text {
  font-family: 'Space Grotesk', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 18px;
  opacity: 0.92;
}

.vy-header-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.vy-nav-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 0;
}

.vy-nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.vy-nav-link.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.vy-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vy-cta {
  text-decoration: none;
  color: #000;
  background: #fff;
  padding: 10px 14px;
  border-radius: 0;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.vy-cta:hover {
  background: rgba(255, 255, 255, 0.92);
}

.vy-mobile-controls {
  display: none;
  position: relative;
  width: 30px;
  height: 30px;
}

.vy-mobile-controls .vy-icon-plain {
  position: absolute;
  inset: 0;
}

.vy-icon-button {
  width: 30px;
  height: 30px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.vy-icon-button:hover {
  background: rgba(255, 255, 255, 0.10);
}

.vy-icon {
  width: 18px;
  height: 18px;
  display: block;
  fill: rgba(255, 255, 255, 0.92);
}

.vy-hidden {
  display: none;
}

.vy-main {
  flex: 1;
  padding: 28px 0 44px 0;
}

.vy-hero {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 34px 0;
}

.vy-hero-title {
  font-family: 'Space Grotesk', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: -0.6px;
  margin: 0;
}

.vy-hero-subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 72ch;
  margin: 0;
}

.vy-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.vy-button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 0;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.vy-button-primary:hover {
  background: rgba(255, 255, 255, 0.92);
}

.vy-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.vy-button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.vy-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 0;
}

.vy-section-title {
  font-family: 'Space Grotesk', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2px;
  margin: 0;
}

.vy-section-lead {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 88ch;
  margin: 0;
}

.vy-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.vy-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vy-card-title {
  font-weight: 800;
  font-size: 14px;
  margin: 0;
}

.vy-card-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.vy-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  width: 100%;
}

.vy-teaser-grid {
  display: grid;
  gap: 16px;
  margin-top: 10px;
}

.vy-teaser-grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.vy-teaser-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.vy-teaser-media {
  width: 100%;
  height: 164px;
  object-fit: cover;
  display: block;
}

.vy-teaser-body {
  padding: 14px 14px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vy-teaser-title {
  font-weight: 800;
  font-size: 14px;
  margin: 0;
}

.vy-teaser-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.vy-teaser-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 2px;
}

.vy-pill {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 10px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vy-link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.vy-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.vy-teaser-grid-1 { grid-template-columns: repeat(1, 1fr); }
.vy-teaser-grid-2 { grid-template-columns: repeat(2, 1fr); }
.vy-teaser-grid-3 { grid-template-columns: repeat(3, 1fr); }
.vy-teaser-grid-4 { grid-template-columns: repeat(4, 1fr); }
.vy-teaser-grid-5 { grid-template-columns: repeat(5, 1fr); }
.vy-teaser-grid-6 { grid-template-columns: repeat(6, 1fr); }

.vy-article {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vy-article-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.vy-article-title {
  font-family: 'Space Grotesk', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.12;
  margin: 0;
}

.vy-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.vy-article-cover {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: block;
}

.vy-article-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 84ch;
}

.vy-article-paragraph {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
}

.vy-article-subhead {
  font-family: 'Space Grotesk', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 18px 0 0 0;
}

.vy-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
}

.vy-footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vy-footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.vy-footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.vy-footer-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 0;
}

.vy-footer-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.vy-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.vy-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.vy-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 92vw);
  height: 100vh;
  background: #000;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateX(102%);
  transition: transform 260ms ease;
  padding: 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vy-mobile-menu.is-open {
  transform: translateX(0);
}

.vy-mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.vy-mobile-menu-title {
  font-family: 'Space Grotesk', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 16px;
}

.vy-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}

.vy-mobile-nav-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.90);
  font-weight: 800;
  font-size: 14px;
  padding: 12px 12px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.vy-mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.10);
}

.vy-mobile-menu-cta {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vy-spacer {
  height: 10px;
}

@media (max-width: 980px) {
  .vy-card-row { grid-template-columns: repeat(2, 1fr); }
  .vy-teaser-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .vy-header-nav { display: none; }
  .vy-mobile-controls { display: block; }
  .vy-hero-title { font-size: 38px; }
  .vy-article-title { font-size: 30px; }
  .vy-card-row { grid-template-columns: repeat(1, 1fr); }
}

@media (max-width: 560px) {
  .vy-container { width: min(1280px, calc(100% - 28px)); }
  .vy-container-wide { width: min(1680px, calc(100% - 28px)); }
  .vy-hero-title { font-size: 32px; }
  .vy-teaser-grid-auto { grid-template-columns: repeat(1, 1fr); }
  .vy-teaser-grid-2 { grid-template-columns: repeat(1, 1fr); }
  .vy-teaser-grid-3 { grid-template-columns: repeat(1, 1fr); }
  .vy-teaser-grid-4 { grid-template-columns: repeat(1, 1fr); }
  .vy-teaser-grid-5 { grid-template-columns: repeat(1, 1fr); }
  .vy-teaser-grid-6 { grid-template-columns: repeat(1, 1fr); }
  .vy-article-cover { height: 240px; }
}

@media (max-width: 1400px) {
  .vy-teaser-grid-6 { grid-template-columns: repeat(5, 1fr); }
  .vy-teaser-grid-5 { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1200px) {
  .vy-teaser-grid-6 { grid-template-columns: repeat(4, 1fr); }
  .vy-teaser-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .vy-teaser-grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .vy-teaser-grid-6 { grid-template-columns: repeat(3, 1fr); }
  .vy-teaser-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .vy-teaser-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .vy-teaser-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .vy-teaser-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .vy-teaser-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .vy-teaser-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .vy-teaser-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.vy-icon-plain {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: inherit;
}

.vy-icon-plain:hover {
  opacity: 0.86;
}

.vy-icon-plain:active {
  opacity: 0.74;
}

.vy-mobile-controls {
  width: 56px;
  height: 56px;
}

.vy-icon-plain {
  width: 56px;
  height: 56px;
}

.vy-icon {
  width: 30px;
  height: 30px;
}

.vy-hidden {
  display: none !important;
}

.vy-header {
  position: relative;
  z-index: 60;
}

.vy-overlay {
  z-index: 40;
}

.vy-mobile-menu {
  z-index: 50;
}

.vy-mobile-controls {
  position: relative !important;
  width: 66px !important;
  height: 66px !important;
}

.vy-mobile-controls .vy-icon-plain {
  position: absolute;
  inset: 0;
}

.vy-icon-plain {
  width: 66px !important;
  height: 66px !important;
}

.vy-icon {
  width: 33px !important;
  height: 33px !important;
}
