
:root {
  --vf-bg: #050608;
  --vf-bg-alt: #101216;
  --vf-accent: #cfa46b;
  --vf-text: #f9fafb;
  --vf-text-muted: #9ca3af;
  --vf-border: #1f2937;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 45%, #000000 100%);
  color: var(--vf-text);
}

a {
  color: var(--vf-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.vf-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
}

.vf-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: radial-gradient(circle at top, rgba(15,23,42,0.96), rgba(3,7,18,0.98));
  border-bottom: 1px solid rgba(31,41,55,0.9);
}

.vf-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.vf-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vf-logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.5);
  background: radial-gradient(circle at 30% 15%, #fef3c7 0, #facc15 18%, #cfa46b 40%, #020617 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #020617;
}

.vf-logo__text {
  display: flex;
  flex-direction: column;
}

.vf-logo__title {
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vf-logo__subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vf-text-muted);
}

.vf-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.vf-nav a {
  color: var(--vf-text-muted);
}

.vf-nav a:hover {
  color: var(--vf-text);
}

.vf-nav__cta {
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.5);
  background: rgba(15,23,42,0.9);
}

.vf-hero {
  margin-top: 2rem;
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  background: #020617;
}

.vf-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.vf-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.9), rgba(0,0,0,0.45), rgba(0,0,0,0.98));
}

.vf-hero__content {
  position: absolute;
  inset: 0;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vf-hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vf-text-muted);
  margin-bottom: 0.6rem;
}

.vf-hero__title {
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.75rem 0;
}

.vf-hero__title span {
  color: var(--vf-accent);
}

.vf-hero__subtitle {
  max-width: 34rem;
  font-size: 1rem;
  color: var(--vf-text-muted);
  margin-bottom: 1.5rem;
}

.vf-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.vf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--vf-border);
  background: rgba(15,23,42,0.9);
  color: var(--vf-text);
  font-size: 0.88rem;
}

.vf-btn--primary {
  background: radial-gradient(circle at top left, #fef3c7 0, #f59e0b 10%, #b45309 40%, #020617 100%);
  border-color: rgba(248,181,0,0.6);
  color: #020617;
  font-weight: 600;
}

.vf-btn__sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.85;
}

.vf-section {
  margin-top: 3rem;
}

.vf-section__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.vf-section__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vf-text-muted);
}

.vf-section__title {
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vf-section__lead {
  max-width: 28rem;
  font-size: 0.92rem;
  color: var(--vf-text-muted);
}

.vf-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.vf-card {
  border-radius: 1.5rem;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(31,41,55,0.9);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.vf-card__media {
  border-radius: 1.1rem;
  overflow: hidden;
  margin-bottom: 0.9rem;
}

.vf-card__meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--vf-text-muted);
  margin-bottom: 0.3rem;
}

.vf-card__title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 0.4rem 0;
}

.vf-card__body {
  font-size: 0.9rem;
  color: var(--vf-text-muted);
}

.vf-form {
  display: grid;
  gap: 1rem;
  max-width: 540px;
}

.vf-form__row {
  display: grid;
  gap: 1rem;
}

.vf-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
}

.vf-field label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--vf-text-muted);
  font-size: 0.76rem;
}

.vf-field input,
.vf-field select,
.vf-field textarea {
  border-radius: 0.75rem;
  border: 1px solid var(--vf-border);
  padding: 0.7rem 0.85rem;
  background: rgba(15,23,42,0.95);
  color: var(--vf-text);
  font: inherit;
}

.vf-field textarea {
  min-height: 140px;
  resize: vertical;
}

.vf-field small {
  font-size: 0.75rem;
  color: var(--vf-text-muted);
}

.vf-footer {
  margin-top: 4rem;
  padding: 2.5rem 0 2.5rem 0;
  border-top: 1px solid rgba(31,41,55,0.9);
  background: radial-gradient(circle at bottom, #020617, #000000 85%);
}

.vf-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  gap: 1.5rem;
}

.vf-footer__copy {
  font-size: 0.78rem;
  color: var(--vf-text-muted);
  margin-top: 0.75rem;
}

@media (min-width: 640px) {
  .vf-form__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .vf-footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .vf-hero__content {
    position: static;
    padding: 1.8rem;
  }
  .vf-hero__overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.98));
  }
  .vf-hero {
    margin-top: 1rem;
  }
  .vf-nav {
    display: none;
  }
}
