/* VyperForge Website V2 marketing layer. Kept separate from site.css so admin/backend UI remains isolated. */
:root {
  --vf-green-primary: #1aa433;
  --vf-green-bright: #48b838;
  --vf-green-dark: #287828;
  --vf-background: #080b0c;
  --vf-background-deep: #030505;
  --vf-background-raised: #0d1112;
  --vf-surface: #111617;
  --vf-surface-strong: #17201b;
  --vf-border: #25302a;
  --vf-border-subtle: rgba(255, 255, 255, 0.08);
  --vf-text-primary: #f4f7f5;
  --vf-text-secondary: #c2cbc5;
  --vf-text-muted: #8f9a93;
  --vf-warning: #e5aa3d;
  --vf-danger: #db5a5a;
  --vf-radius: 18px;
  --vf-radius-lg: 28px;
  --vf-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
  --vf-width: 1260px;
}

body.vf-marketing {
  background:
    radial-gradient(circle at 12% 0%, rgba(72, 184, 56, 0.15), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(26, 164, 51, 0.12), transparent 30rem),
    linear-gradient(180deg, var(--vf-background), var(--vf-background-deep));
  color: var(--vf-text-primary);
}

.vf-marketing a { color: inherit; }
.vf-marketing img { max-width: 100%; }

.vf-announcement {
  display: block;
  padding: 9px 16px;
  border-bottom: 1px solid rgba(72, 184, 56, 0.2);
  background: linear-gradient(90deg, rgba(26, 164, 51, 0.22), rgba(8, 11, 12, 0.88));
  color: var(--vf-text-primary);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.vf-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--vf-border-subtle);
  background: rgba(8, 11, 12, 0.82);
  backdrop-filter: blur(18px);
}

.vf-nav,
.vf-container,
.vf-footer {
  width: min(var(--vf-width), calc(100% - 36px));
  margin: 0 auto;
}

.vf-nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.vf-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--vf-text-primary);
  font-size: 1.15rem;
  font-weight: 900;
  text-decoration: none;
}

.vf-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  padding: 5px;
  border: 1px solid rgba(72, 184, 56, 0.32);
  border-radius: 12px;
  background: rgba(17, 22, 23, 0.74);
  box-shadow: 0 0 28px rgba(72, 184, 56, 0.15);
}

.vf-brand span span { color: var(--vf-green-bright); }

.vf-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.vf-nav-link,
.vf-nav-toggle,
.vf-menu-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--vf-text-secondary);
  cursor: pointer;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.vf-nav-link:hover,
.vf-nav-link:focus-visible,
.vf-nav-toggle:hover,
.vf-nav-toggle:focus-visible,
.vf-nav-link[aria-current="page"] {
  border-color: rgba(72, 184, 56, 0.26);
  background: rgba(72, 184, 56, 0.1);
  color: var(--vf-text-primary);
  outline: none;
}

.vf-nav-item { position: relative; }

.vf-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: min(620px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--vf-border-subtle);
  border-radius: 18px;
  background: rgba(13, 17, 18, 0.98);
  box-shadow: var(--vf-shadow);
}

.vf-dropdown[hidden] { display: none; }

.vf-dropdown a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--vf-text-secondary);
  text-decoration: none;
}

.vf-dropdown a:hover,
.vf-dropdown a:focus-visible {
  border-color: rgba(72, 184, 56, 0.28);
  background: rgba(72, 184, 56, 0.09);
  color: var(--vf-text-primary);
  outline: none;
}

.vf-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(72, 184, 56, 0.14);
  color: var(--vf-green-bright);
  font-weight: 950;
}

.vf-dropdown strong { display: block; color: var(--vf-text-primary); }
.vf-dropdown span:last-child { font-size: 0.86rem; color: var(--vf-text-muted); }

.vf-menu-toggle { display: none; }

.vf-cta,
.vf-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 19px;
  border: 1px solid rgba(72, 184, 56, 0.36);
  border-radius: 12px;
  color: var(--vf-text-primary);
  font-weight: 900;
  text-decoration: none;
}

.vf-button-primary,
.vf-cta {
  border-color: transparent;
  background: linear-gradient(135deg, var(--vf-green-dark), var(--vf-green-bright));
  color: #041007;
}

.vf-button-secondary { background: rgba(17, 22, 23, 0.76); }

.vf-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 56px;
  align-items: center;
  padding: 94px 0 72px;
}

.vf-eyebrow {
  margin: 0 0 14px;
  color: var(--vf-green-bright);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vf-kicker {
  margin: 18px 0 0;
  color: var(--vf-text-secondary);
  font-size: 1rem;
  font-weight: 800;
}

.vf-hero h1,
.vf-page-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(3.3rem, 7vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.vf-page-hero h1 { max-width: 950px; font-size: clamp(3rem, 6vw, 5.6rem); }

.vf-lede {
  max-width: 760px;
  color: var(--vf-text-secondary);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.55;
}

.vf-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.vf-visual-card,
.vf-panel,
.vf-card,
.vf-shot,
.vf-beta-panel {
  border: 1px solid var(--vf-border-subtle);
  border-radius: var(--vf-radius-lg);
  background:
    linear-gradient(135deg, rgba(72, 184, 56, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(17, 22, 23, 0.96), rgba(8, 11, 12, 0.96));
  box-shadow: var(--vf-shadow);
}

.vf-visual-card { padding: 16px; }

.vf-window-bar {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-bottom: 1px solid var(--vf-border-subtle);
  color: var(--vf-text-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.vf-window-bar::before,
.vf-window-bar::after,
.vf-window-dot {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
}
.vf-window-bar::after { background: var(--vf-green-bright); }
.vf-window-dot { display: inline-block; background: rgba(229, 170, 61, 0.9); }

.vf-placeholder,
.vf-shot-placeholder {
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: 36px;
  border-radius: 20px;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 12%, rgba(72, 184, 56, 0.22), transparent 22rem),
    #0a0f10;
  background-size: 38px 38px, 38px 38px, auto, auto;
  color: var(--vf-text-secondary);
  text-align: center;
}

.vf-placeholder strong,
.vf-shot-placeholder strong {
  display: block;
  margin-bottom: 6px;
  color: var(--vf-text-primary);
  font-size: 1.15rem;
}

.vf-placeholder code,
.vf-shot-placeholder code {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(0,0,0,0.32);
  color: var(--vf-green-bright);
}

.vf-tech-strip {
  padding: 22px 0 78px;
}

.vf-tech-strip p { color: var(--vf-text-muted); font-weight: 900; text-align: center; }
.vf-tech-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.vf-tech-list span { padding: 8px 12px; border: 1px solid var(--vf-border-subtle); border-radius: 999px; color: var(--vf-text-secondary); background: rgba(17,22,23,0.66); }

.vf-section { padding: 84px 0; }
.vf-section-head { max-width: 820px; margin-bottom: 34px; }
.vf-section-head h2,
.vf-panel h2 { margin: 0 0 14px; font-size: clamp(2.1rem, 4vw, 4rem); line-height: 1; letter-spacing: -0.045em; }
.vf-section-head p,
.vf-card p,
.vf-panel p { color: var(--vf-text-secondary); }

.vf-lifecycle { display: grid; gap: 26px; }
.vf-lifecycle-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
}
.vf-lifecycle-panel:nth-child(even) .vf-panel-copy { order: 2; }

.vf-checks { display: grid; gap: 9px; padding: 0; margin: 20px 0 0; list-style: none; }
.vf-checks li { position: relative; padding-left: 24px; color: var(--vf-text-secondary); }
.vf-checks li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 8px; height: 8px; border-radius: 50%; background: var(--vf-green-bright); box-shadow: 0 0 16px rgba(72,184,56,0.55); }

.vf-grid { display: grid; gap: 18px; }
.vf-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.vf-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vf-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.vf-card { padding: 24px; }
.vf-card h3 { margin: 0 0 10px; font-size: 1.25rem; }
.vf-card p { margin-bottom: 0; }

.vf-flow { display: grid; gap: 12px; }
.vf-flow span { display: block; padding: 14px 16px; border: 1px solid var(--vf-border-subtle); border-radius: 14px; background: rgba(8, 11, 12, 0.62); color: var(--vf-text-secondary); font-weight: 850; }
.vf-flow span strong { color: var(--vf-green-bright); }

.vf-tabs { display: grid; gap: 18px; }
.vf-tab-list { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.vf-tab { min-height: 42px; flex: 0 0 auto; padding: 0 13px; border: 1px solid var(--vf-border-subtle); border-radius: 999px; background: rgba(17,22,23,0.72); color: var(--vf-text-secondary); cursor: pointer; font: inherit; font-weight: 850; }
.vf-tab[aria-selected="true"] { border-color: rgba(72,184,56,0.55); background: rgba(72,184,56,0.14); color: var(--vf-green-bright); }
.vf-tab-panel[hidden] { display: none; }

.vf-compare { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.vf-muted-card { opacity: 0.86; }

.vf-page-hero { padding: 86px 0 48px; }
.vf-breadcrumb { color: var(--vf-text-muted); font-weight: 800; margin-bottom: 20px; }
.vf-breadcrumb a { color: var(--vf-green-bright); text-decoration: none; }

.vf-page-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 34px; align-items: start; }
.vf-sticky { position: sticky; top: 112px; }

.vf-beta-panel { padding: clamp(24px, 4vw, 42px); }
.vf-beta-form { display: grid; gap: 17px; }
.vf-beta-form label { display: grid; gap: 7px; color: var(--vf-text-primary); font-weight: 850; }
.vf-beta-form input,
.vf-beta-form select,
.vf-beta-form textarea { min-height: 48px; padding: 0 13px; border: 1px solid var(--vf-border-subtle); border-radius: 12px; background: #070b0c; color: var(--vf-text-primary); font: inherit; }
.vf-beta-form input:focus,
.vf-beta-form select:focus,
.vf-beta-form textarea:focus { border-color: var(--vf-green-bright); box-shadow: 0 0 0 3px rgba(72,184,56,0.16); outline: none; }
.vf-consent { grid-template-columns: 20px 1fr !important; align-items: start; color: var(--vf-text-secondary) !important; font-size: 0.94rem; line-height: 1.45; }
.vf-consent input { width: 18px; min-height: 18px; padding: 0; margin-top: 3px; accent-color: var(--vf-green-bright); }
.vf-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.vf-message { display: grid; gap: 5px; padding: 14px; border: 1px solid rgba(72,184,56,0.45); border-radius: 14px; background: rgba(72,184,56,0.13); }
.vf-message.vf-error { border-color: rgba(219,90,90,0.62); background: rgba(219,90,90,0.13); }
.vf-message[hidden] { display: none; }

.vf-footer-cta { padding: 78px 0; }
.vf-footer-cta .vf-panel { padding: clamp(26px, 5vw, 56px); text-align: center; }
.vf-footer { display: grid; grid-template-columns: 1fr 1.5fr auto; gap: 24px; padding: 32px 0 44px; border-top: 1px solid var(--vf-border-subtle); color: var(--vf-text-muted); font-size: 0.92rem; }
.vf-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 16px; }
.vf-footer a { color: var(--vf-text-secondary); text-decoration: none; }
.vf-footer a:hover { color: var(--vf-green-bright); }

@media (max-width: 980px) {
  .vf-menu-toggle { display: inline-flex; }
  .vf-nav { flex-wrap: wrap; padding: 12px 0; }
  .vf-nav-links { width: 100%; display: none; flex-direction: column; align-items: stretch; }
  .vf-nav-links.is-open { display: flex; }
  .vf-nav-item { width: 100%; }
  .vf-nav-link, .vf-nav-toggle { width: 100%; justify-content: space-between; }
  .vf-dropdown { position: static; width: 100%; grid-template-columns: 1fr; margin: 4px 0 10px; box-shadow: none; }
  .vf-cta { width: 100%; }
  .vf-hero,
  .vf-lifecycle-panel,
  .vf-page-grid { grid-template-columns: 1fr; }
  .vf-lifecycle-panel:nth-child(even) .vf-panel-copy { order: 0; }
  .vf-grid-4, .vf-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vf-sticky { position: static; }
  .vf-footer { grid-template-columns: 1fr; }
  .vf-footer nav { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .vf-nav, .vf-container, .vf-footer { width: min(100% - 24px, var(--vf-width)); }
  .vf-hero { padding-top: 54px; }
  .vf-hero h1, .vf-page-hero h1 { font-size: clamp(2.8rem, 16vw, 4.5rem); }
  .vf-grid-4, .vf-grid-3, .vf-grid-2, .vf-compare { grid-template-columns: 1fr; }
  .vf-section { padding: 58px 0; }
  .vf-placeholder, .vf-shot-placeholder { min-height: 260px; padding: 22px; }
}

.vf-product-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--vf-border-subtle);
  border-radius: 22px;
  background: #070b0c;
  box-shadow: var(--vf-shadow);
}

.vf-product-shot img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--vf-border-subtle);
}

.vf-product-shot figcaption {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  color: var(--vf-text-secondary);
}

.vf-product-shot figcaption strong {
  color: var(--vf-text-primary);
}

.vf-product-shot figcaption span {
  color: var(--vf-text-muted);
  font-size: 0.92rem;
}

.vf-placeholder-note {
  display: inline-block;
  margin-top: 10px;
  color: var(--vf-text-muted);
  font-size: 0.92rem;
  font-weight: 800;
}

/* Keep product screenshots fully visible inside the rounded frame. */
.vf-product-shot {
  padding: 12px;
  background: #070b0c;
}

.vf-product-shot img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  border-bottom: 0;
  border-radius: 14px;
  background: #050808;
}

.vf-product-shot figcaption {
  margin-top: 12px;
  padding: 14px 6px 4px;
  border-top: 1px solid var(--vf-border-subtle);
}

/* Closing CTA needs tighter rhythm than feature panels. */
.vf-footer-cta {
  padding: 56px 0 64px;
}

.vf-footer-cta .vf-panel {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(34px, 4vw, 48px) clamp(22px, 5vw, 64px);
}

.vf-footer-cta .vf-eyebrow {
  margin-bottom: 18px;
}

.vf-footer-cta h2 {
  max-width: 980px;
  margin: 0 auto 18px;
  font-size: clamp(2.25rem, 4.2vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.vf-footer-cta .vf-lede {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 1.8vw, 1.42rem);
  line-height: 1.5;
}

.vf-footer-cta .vf-actions {
  margin-top: 28px;
  gap: 12px;
}

.vf-footer-cta .vf-button {
  min-width: 220px;
}

@media (max-width: 680px) {
  .vf-footer-cta {
    padding: 42px 0 50px;
  }

  .vf-footer-cta .vf-panel {
    padding: 28px 18px;
  }

  .vf-footer-cta h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .vf-footer-cta .vf-button {
    width: 100%;
    min-width: 0;
  }
}

/* Platform detail sections: keep the sidebar compact so feature cards line up cleanly. */
.vf-page-grid {
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.vf-page-grid > .vf-card.vf-sticky {
  min-height: 0;
}

.vf-page-grid .vf-grid-2 {
  align-items: stretch;
}

.vf-page-grid .vf-grid-2 .vf-card {
  min-height: 128px;
}

@media (max-width: 980px) {
  .vf-page-grid {
    grid-template-columns: 1fr;
  }
}

/* App-language pass: use VyperForge-like navigation, icons and dashboard cards. */
.vf-app-icon {
  width: 36px;
  height: 36px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(72, 184, 56, 0.32);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(72, 184, 56, 0.14), rgba(8, 11, 12, 0.72));
  color: var(--vf-green-bright);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 0 24px rgba(72,184,56,0.12);
}

.vf-app-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.vf-dropdown {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vf-dropdown a {
  grid-template-columns: 36px 1fr;
}

.vf-icon {
  display: none;
}

.vf-dashboard-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 210px;
  color: inherit;
  text-decoration: none;
}

.vf-dashboard-card:hover,
.vf-dashboard-card:focus-visible {
  border-color: rgba(72,184,56,0.42);
  background:
    linear-gradient(135deg, rgba(72,184,56,0.13), transparent 42%),
    linear-gradient(180deg, rgba(17,22,23,0.98), rgba(8,11,12,0.96));
  outline: none;
}

.vf-dashboard-card .vf-app-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}

.vf-dashboard-card .vf-app-icon svg {
  width: 32px;
  height: 32px;
}

.vf-status-pill {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 9px;
  border: 1px solid rgba(72,184,56,0.34);
  border-radius: 999px;
  background: rgba(72,184,56,0.11);
  color: var(--vf-green-bright);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vf-platform-sidebar {
  padding: 18px;
}

.vf-platform-nav,
.vf-section-tabs {
  display: grid;
  gap: 8px;
}

.vf-platform-nav a,
.vf-section-tabs a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 7px 9px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--vf-text-secondary);
  font-weight: 850;
  text-decoration: none;
}

.vf-section-tabs {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--vf-border-subtle);
}

.vf-section-tabs a {
  grid-template-columns: 1fr;
  min-height: 36px;
  font-size: 0.9rem;
}

.vf-platform-nav .vf-app-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.vf-platform-nav .vf-app-icon svg {
  width: 19px;
  height: 19px;
}

.vf-platform-nav a:hover,
.vf-platform-nav a:focus-visible,
.vf-section-tabs a:hover,
.vf-section-tabs a:focus-visible,
.vf-platform-nav a[aria-current="page"] {
  border-color: rgba(72,184,56,0.34);
  background: rgba(72,184,56,0.11);
  color: var(--vf-text-primary);
  outline: none;
}

.vf-platform-nav a[aria-current="page"] {
  box-shadow: inset 3px 0 0 var(--vf-green-bright);
}

.vf-page-grid > .vf-grid-2 .vf-card {
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(72,184,56,0.08), transparent 44%),
    linear-gradient(180deg, rgba(17,22,23,0.98), rgba(8,11,12,0.96));
}

.vf-visual-card .vf-product-shot {
  box-shadow: none;
}

@media (max-width: 980px) {
  .vf-dropdown {
    grid-template-columns: 1fr;
  }

  .vf-platform-sidebar {
    position: static;
  }

  .vf-platform-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .vf-platform-nav {
    grid-template-columns: 1fr;
  }
}

/* Platform guide polish: readable workflows, tighter section rhythm, clickable screenshots. */
.vf-guide-content {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

.vf-guide-section {
  scroll-margin-top: 120px;
}

.vf-guide-section + .vf-guide-section {
  margin-top: 0;
}

.vf-guide-section > .vf-eyebrow {
  margin-bottom: 10px;
}

.vf-guide-section > h2 {
  max-width: 13ch;
  margin-bottom: 18px;
  line-height: 1.04;
}

.vf-guide-section > p {
  max-width: 74ch;
}

.vf-guide-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 20px;
  counter-reset: vf-step;
}

.vf-guide-flow span {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 74px;
  padding: 15px 16px 15px 48px;
  border: 1px solid rgba(72, 184, 56, 0.24);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(72, 184, 56, 0.12), transparent 48%),
    linear-gradient(180deg, rgba(17, 22, 23, 0.98), rgba(8, 11, 12, 0.96));
  color: var(--vf-text-primary);
  font-weight: 850;
  line-height: 1.35;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  counter-increment: vf-step;
}

.vf-guide-flow span::before {
  content: counter(vf-step);
  position: absolute;
  left: 15px;
  top: 50%;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  transform: translateY(-50%);
  background: var(--vf-green-bright);
  color: #041006;
  font-size: 0.78rem;
  font-weight: 950;
}

.vf-guide-card,
.vf-guide-note,
.vf-why-card {
  padding: clamp(20px, 2.4vw, 28px);
}

.vf-guide-shot {
  cursor: zoom-in;
}

.vf-guide-shot img {
  transition: transform 180ms ease, filter 180ms ease;
}

.vf-guide-shot:hover img,
.vf-guide-shot:focus-within img {
  transform: scale(1.015);
  filter: brightness(1.08);
}

.vf-shot-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  text-align: inherit;
}

.vf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.vf-lightbox[hidden] {
  display: none;
}

.vf-lightbox__panel {
  position: relative;
  width: min(1200px, 96vw);
  max-height: 92vh;
  padding: clamp(12px, 2vw, 18px);
  border: 1px solid rgba(72, 184, 56, 0.32);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(72, 184, 56, 0.12), transparent 42%),
    #050707;
  box-shadow: 0 28px 90px rgba(0,0,0,0.55), 0 0 48px rgba(72,184,56,0.16);
}

.vf-lightbox__image {
  display: block;
  width: 100%;
  max-height: calc(92vh - 120px);
  object-fit: contain;
  border-radius: 16px;
  background: #020303;
}

.vf-lightbox__caption {
  margin: 12px 44px 0 4px;
  color: var(--vf-text-secondary);
}

.vf-lightbox__caption strong {
  display: block;
  color: var(--vf-text-primary);
}

.vf-lightbox__close {
  position: absolute;
  right: 18px;
  bottom: 14px;
  min-width: 36px;
  min-height: 36px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--vf-text-primary);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 900;
}

.vf-lightbox__close:hover,
.vf-lightbox__close:focus-visible {
  border-color: rgba(72,184,56,0.52);
  color: var(--vf-green-bright);
  outline: none;
}

@media (max-width: 760px) {
  .vf-guide-flow {
    grid-template-columns: 1fr;
  }

  .vf-guide-section > h2 {
    max-width: 100%;
  }
}

/* Legal/policy pages in the marketing shell. */
.vf-policy-hero {
  padding-bottom: 18px;
}

.vf-policy-updated {
  margin-top: 18px;
  color: var(--vf-text-muted);
  font-weight: 800;
}

.vf-policy-layout {
  display: grid;
  grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.vf-policy-sidebar {
  padding: 18px;
}

.vf-policy-content {
  display: grid;
  gap: 18px;
}

.vf-policy-section {
  padding: clamp(22px, 3vw, 32px);
}

.vf-policy-section h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.vf-policy-section p {
  max-width: 78ch;
}

.vf-policy-section a {
  color: var(--vf-green-bright);
}

@media (max-width: 980px) {
  .vf-policy-layout {
    grid-template-columns: 1fr;
  }
}
