:root {
  --vt-navy: #0a0e27;
  --vt-navy-soft: #141932;
  --vt-red: #c71f27;
  --vt-gold: #ffcf5f;
  --vt-gray: #7b7f93;
  --vt-light: #f5f7fb;
  --vt-white: #ffffff;
  --vt-radius-lg: 18px;
  --vt-radius-xl: 26px;
  --vt-shadow-soft: 0 20px 45px rgba(0, 0, 0, 0.25);
  --vt-shadow-subtle: 0 12px 30px rgba(0, 0, 0, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, #20254b, #050509);
  color: var(--vt-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* Layout */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

main {
  flex: 1;
}

/* Header & Nav */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(10, 14, 39, 0.97), rgba(10, 14, 39, 0.9));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

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

.brand-logo {
  width: 52px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  max-height: 40px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.78rem;
  color: var(--vt-gray);
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  color: var(--vt-gray);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 4px;
}

.nav-links a.active {
  color: var(--vt-white);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--vt-red), var(--vt-gold));
  transition: width 0.25s ease-out;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-phone {
  display: none;
  font-size: 0.84rem;
  color: var(--vt-gray);
}

.nav-phone strong {
  color: var(--vt-white);
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--vt-white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span {
  font-size: 1.3rem;
  line-height: 1;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-size: 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s ease-out, color 0.15s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--vt-red), #f53f4f);
  box-shadow: var(--vt-shadow-soft);
  color: var(--vt-white);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--vt-white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* Hero */

.hero {
  padding: 64px 0 40px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10, 13, 30, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--vt-gray);
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--vt-red), #ff7c8b);
  box-shadow: 0 0 10px rgba(245, 80, 100, 0.8);
}

.hero-title {
  font-size: clamp(2.2rem, 3.1vw, 3rem);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}

.hero-title span {
  background: linear-gradient(120deg, var(--vt-red), var(--vt-gold));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--vt-gray);
  max-width: 540px;
  margin-bottom: 20px;
}

.hero-metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 26px;
  font-size: 0.84rem;
  color: var(--vt-gray);
}

.hero-metadata span strong {
  color: var(--vt-white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-footnote {
  font-size: 0.78rem;
  color: var(--vt-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-footnote-badge {
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--vt-white);
}

/* Hero visual card */

.hero-visual {
  position: relative;
}

.hero-card {
  background: radial-gradient(circle at top, #292b66, #111225);
  border-radius: var(--vt-radius-xl);
  padding: 22px 22px 20px;
  box-shadow: var(--vt-shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.hero-card-title {
  font-size: 0.85rem;
  color: var(--vt-gray);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-card-badge {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.8rem;
}

.metric {
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.metric-label {
  color: var(--vt-gray);
  margin-bottom: 4px;
}

.metric-value {
  font-size: 1rem;
  font-weight: 600;
}

.metric-value span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-left: 6px;
  color: var(--vt-gray);
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--vt-gray);
  margin-top: 2px;
}

.hero-card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #36fca4;
  box-shadow: 0 0 12px rgba(54, 252, 164, 0.9);
}

.hero-card-chip {
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  color: #d6d9ff;
}

.hero-orbit {
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.06), transparent 55%),
    radial-gradient(circle at 100% 75%, rgba(255, 255, 255, 0.08), transparent 50%);
  mix-blend-mode: soft-light;
  opacity: 0.75;
  pointer-events: none;
}

/* Sections */

section {
  padding: 40px 0;
}

.section-header {
  margin-bottom: 26px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.section-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--vt-gray);
  margin-bottom: 6px;
}

.section-title {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--vt-gray);
  max-width: 520px;
}

.section-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--vt-gray);
}

.section-link span {
  margin-left: 6px;
}

/* Cards / grids */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: rgba(7, 7, 17, 0.9);
  border-radius: var(--vt-radius-lg);
  padding: 18px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--vt-shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.86rem;
}

.card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--vt-gray);
}

.card-title {
  font-weight: 600;
  font-size: 0.98rem;
}

.card-body {
  color: var(--vt-gray);
  font-size: 0.84rem;
}

/* Multi-column layouts */

.three-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: flex-start;
}

.pill-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.86rem;
}

.pill {
  background: rgba(10, 10, 22, 0.9);
  border-radius: 999px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.badge-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.badge {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.badge-accent {
  border-color: rgba(199, 31, 39, 0.8);
  color: #ffb9c1;
  background: linear-gradient(135deg, rgba(199, 31, 39, 0.35), rgba(47, 48, 146, 0.3));
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.list-unstyled li {
  margin-bottom: 12px;
  font-size: 0.86rem;
  color: var(--vt-gray);
}

.list-unstyled li strong {
  color: var(--vt-white);
}

/* Info Block */

.info-block {
  background: rgba(7, 7, 17, 0.96);
  border-radius: var(--vt-radius-lg);
  padding: 16px 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}

.info-block dt {
  color: var(--vt-gray);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 3px;
}

.info-block dd {
  margin: 0 0 8px;
  font-weight: 500;
}

/* Contact */

.contact-section {
  padding-bottom: 70px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}

.contact-card {
  background: rgba(7, 7, 17, 0.96);
  border-radius: var(--vt-radius-xl);
  padding: 22px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--vt-shadow-soft);
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 0.86rem;
  color: var(--vt-gray);
  margin-bottom: 18px;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  font-size: 0.85rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--vt-gray);
}

input,
textarea,
select {
  width: 100%;
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 7, 17, 0.95);
  color: var(--vt-white);
  font-size: 0.85rem;
  outline: none;
  transition: border 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s ease-out;
}

input::placeholder,
textarea::placeholder {
  color: rgba(210, 210, 230, 0.6);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(199, 31, 39, 0.9);
  box-shadow: 0 0 0 1px rgba(199, 31, 39, 0.6);
}

.contact-meta {
  font-size: 0.85rem;
  color: var(--vt-gray);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-meta-item {
  background: rgba(10, 10, 22, 0.95);
  border-radius: var(--vt-radius-lg);
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.contact-meta-item h4 {
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.contact-meta-item p {
  font-size: 0.8rem;
  color: var(--vt-gray);
  margin: 0;
}

.contact-meta-item a {
  color: var(--vt-white);
}

/* Footer */

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0 20px;
  background: rgba(7, 7, 17, 0.96);
  font-size: 0.78rem;
  color: var(--vt-gray);
}

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

.footer-right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-right span {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* Utilities */

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.muted { color: var(--vt-gray); }

/* Inner pages hero */

.page-hero {
  padding: 48px 0 20px;
}

.page-hero-title {
  font-size: 2rem;
  margin-bottom: 8px;
}

.page-hero-subtitle {
  font-size: 0.95rem;
  color: var(--vt-gray);
  max-width: 640px;
}

/* Markets cards */

.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* Resources */

.resource-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-visual {
    order: -1;
  }
  .card-grid,
  .three-column,
  .markets-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  nav {
    position: fixed;
    inset: 58px 12px auto 12px;
    flex-direction: column;
    background: rgba(7, 7, 17, 0.98);
    border-radius: 16px;
    padding: 14px 14px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--vt-shadow-soft);
    transform-origin: top right;
    transform: scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease-out, transform 0.18s ease-out;
  }

  nav.open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .nav-cta {
    width: 100%;
    justify-content: space-between;
    margin-top: 10px;
  }

  .nav-phone {
    display: inline;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 40px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .header-inner {
    padding: 10px 0;
  }
}

@media (max-width: 600px) {
  .card-grid,
  .three-column,
  .markets-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-metadata span {
    border-right: none;
    padding-right: 0;
  }
  form {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-title {
    font-size: 2rem;
  }
}
