/* Noetfield VC pages — balanced: motion + tiles + concise copy (not newspaper, not blank) */

body.nf-gate.nf-gate--vc .nf-gate__frame {
  max-width: 960px;
  margin: 0 auto;
}

body.nf-gate.nf-gate--vc .nf-gate__main {
  align-items: stretch;
  justify-content: flex-start;
  max-width: none;
  padding: clamp(1.25rem, 4vh, 2rem) 0 clamp(3rem, 7vh, 4.5rem);
}

.nf-vc-site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.2rem);
  margin-left: auto;
}

.nf-vc-site-nav a,
.nf-vc-footer a {
  color: rgba(236, 234, 228, 0.55);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nf-vc-site-nav a:hover,
.nf-vc-site-nav a:focus-visible,
.nf-vc-site-nav a[aria-current="page"],
.nf-vc-footer a:hover,
.nf-vc-footer a:focus-visible {
  color: #c9a962;
  outline: none;
}

.nf-vc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
}

.nf-vc-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
}

@media (max-width: 720px) {
  body.nf-gate.nf-gate--vc .nf-gate__top {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nf-vc-site-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
    padding-bottom: 0.35rem;
  }

  .nf-vc-site-nav a {
    white-space: nowrap;
  }

  .nf-vc-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@keyframes nf-vc-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes nf-vc-glow {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.55; }
}

body.nf-gate.nf-gate--vc .nf-gate__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(201, 169, 98, 0.08), transparent 40%);
  animation: nf-vc-glow 8s ease-in-out infinite;
}

.nf-vc-back {
  display: inline-flex;
  margin-bottom: 1.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(236, 234, 228, 0.42);
  transition: color 0.15s ease;
}

.nf-vc-back:hover,
.nf-vc-back:focus-visible {
  color: #c9a962;
  outline: none;
}

.nf-vc-hero {
  margin-bottom: 2rem;
  animation: nf-vc-rise 0.55s ease both;
}

.nf-vc-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9a962;
}

.nf-vc-hero h1 {
  margin: 0 0 0.85rem;
  font-family: "Newsreader", "Georgia", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #f5f3ed;
}

.nf-vc-lead {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
  color: rgba(236, 234, 228, 0.68);
}

.nf-vc-grid {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 640px) {
  .nf-vc-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .nf-vc-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nf-vc-grid > * {
  animation: nf-vc-rise 0.55s ease both;
}

.nf-vc-grid > *:nth-child(1) { animation-delay: 0.08s; }
.nf-vc-grid > *:nth-child(2) { animation-delay: 0.14s; }
.nf-vc-grid > *:nth-child(3) { animation-delay: 0.2s; }
.nf-vc-grid > *:nth-child(4) { animation-delay: 0.26s; }
.nf-vc-grid > *:nth-child(5) { animation-delay: 0.32s; }
.nf-vc-grid > *:nth-child(6) { animation-delay: 0.38s; }

.nf-vc-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 6.5rem;
  padding: 1.1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.025);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.nf-vc-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(201, 169, 98, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.nf-vc-tile:hover,
.nf-vc-tile:focus-visible {
  border-color: rgba(201, 169, 98, 0.45);
  background: rgba(201, 169, 98, 0.06);
  transform: translateY(-3px);
  outline: none;
}

.nf-vc-tile:hover::before,
.nf-vc-tile:focus-visible::before {
  opacity: 1;
}

.nf-vc-tile--muted {
  opacity: 0.5;
  pointer-events: none;
}

.nf-vc-tile--static {
  pointer-events: none;
  cursor: default;
}

.nf-vc-tile__arrow {
  position: absolute;
  top: 0.95rem;
  right: 1rem;
  font-size: 0.95rem;
  color: rgba(236, 234, 228, 0.32);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nf-vc-tile:hover .nf-vc-tile__arrow,
.nf-vc-tile:focus-visible .nf-vc-tile__arrow {
  color: #c9a962;
  transform: translate(2px, -2px);
}

.nf-vc-tile__label {
  position: relative;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #f0eee8;
  line-height: 1.25;
}

.nf-vc-tile__desc {
  position: relative;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(236, 234, 228, 0.52);
}

.nf-vc-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  animation: nf-vc-rise 0.55s ease 0.35s both;
}

.nf-vc-pill {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(236, 234, 228, 0.55);
}

.nf-vc-pill--live {
  border-color: rgba(126, 201, 154, 0.35);
  color: #7ec99a;
}

.nf-vc-pill--soon {
  color: rgba(236, 234, 228, 0.35);
}

.nf-vc-note {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(236, 234, 228, 0.5);
  animation: nf-vc-rise 0.55s ease 0.42s both;
}

.nf-vc-note a {
  color: #c9a962;
  text-decoration: none;
}

.nf-vc-note a:hover,
.nf-vc-note a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.nf-vc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 0.5rem;
  animation: nf-vc-rise 0.55s ease 0.48s both;
}

.nf-vc-meta a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(236, 234, 228, 0.45);
  transition: color 0.15s ease;
}

.nf-vc-meta a:hover,
.nf-vc-meta a:focus-visible {
  color: #c9a962;
  outline: none;
}

.nf-vc-section {
  margin: 2rem 0 1rem;
  animation: nf-vc-rise 0.55s ease both;
}

.nf-vc-section h2 {
  margin: 0 0 0.65rem;
  font-family: "Newsreader", "Georgia", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #f0eee8;
}

.nf-vc-section p {
  margin: 0 0 0.85rem;
  max-width: 40rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(236, 234, 228, 0.62);
}

.nf-vc-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0 1.25rem;
  font-size: 0.84rem;
}

.nf-vc-table th,
.nf-vc-table td {
  text-align: left;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.nf-vc-table th {
  color: rgba(236, 234, 228, 0.45);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.nf-vc-table td {
  color: rgba(236, 234, 228, 0.72);
}

.nf-vc-table td:first-child {
  color: #c9a962;
  font-weight: 500;
  white-space: nowrap;
}

.nf-vc-flow {
  margin: 0.75rem 0 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  line-height: 1.7;
  color: rgba(236, 234, 228, 0.55);
  white-space: pre-wrap;
}

@media (prefers-reduced-motion: reduce) {
  .nf-vc-hero,
  .nf-vc-grid > *,
  .nf-vc-strip,
  .nf-vc-note,
  .nf-vc-meta,
  .nf-vc-section,
  body.nf-gate.nf-gate--vc .nf-gate__bg::before {
    animation: none;
  }

  .nf-vc-tile {
    transition: none;
  }
}
