/*
  VentureX site stylesheet
  Copyright (c) VentureX. All rights reserved.

  Structure:
  1. Fonts and design tokens
  2. Shared footer, modal, and utility components
  3. Base layout and typography
  4. Homepage hero and fixed navigation
  5. Homepage content sections
  6. Forms, FAQ, pricing, toast, and responsive rules
*/

/* 1. Fonts and design tokens */

@font-face {
  font-family: "DM Serif Display";
  src: url("/fonts/dm-serif-display-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: optional;
}

:root {

  /*
    Core palette. Change these first when exploring brand direction.
    Legacy aliases keep older markup/classes working while the stylesheet is consolidated.
  */
  --vx-ink:#111111;
  --vx-ink-2:#1d1d1b;
  --vx-accent:#c8a24a;
  --vx-accent-rgb:200 162 74;
  --vx-surface:#ffffff;
  --vx-surface-soft:#f6f4ef;
  --vx-text:#111827;
  --vx-muted:#64748b;
  --vx-line:#d7d3c8;
  --vx-shadow:15 23 42;
  --vx-font-body:"DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --vx-font-heading:"DM Serif Display", Georgia, serif;
  --vx-heading-color:var(--vx-ink);
  --vx-heading-weight:800;
  --vx-heading-tracking:0;
  --vx-section-heading-size:clamp(1.875rem, 4vw, 3rem);
  --vx-section-heading-line:1.08;
  --vx-feature-heading-size:clamp(2rem, 3.1vw, 3rem);
  --vx-feature-heading-line:1.08;
  --vx-subsection-heading-size:clamp(1.35rem, 1.8vw, 1.8rem);
  --vx-subsection-heading-line:1.1;
  --vx-subhead-color:var(--vx-muted);
  --vx-subhead-size:.82rem;
  --vx-subhead-weight:900;
  --vx-subhead-tracking:.12em;
  --vx-blue:var(--vx-ink);
  --vx-blue-2:var(--vx-ink-2);
  --vx-yellow:var(--vx-accent);
  --vx-midnight:#080808;
  --vx-hero-fade-alpha: 0;
  --vx-hero-nav-alpha: 0;
  --vx-hero-cta-border: var(--vx-yellow);
  --vx-hero-logo-scale: 1;
  --vx-hero-logo-opacity: .11;
  --vx-footer-bg: var(--vx-ink);
  --vx-footer-border: rgba(255, 255, 255, .12);
  --vx-footer-text: rgba(255, 255, 255, .9);
  --vx-footer-muted: rgba(255, 255, 255, .58);
  --vx-footer-link: rgba(255, 255, 255, .82);
  --vx-footer-link-hover: var(--vx-yellow);
}

/* 2. Shared footer, modal, and utility components */

.vx-footer {
  background: var(--vx-footer-bg);
  border-top: 1px solid var(--vx-footer-border);
  color: var(--vx-footer-text);
}

.vx-footer__container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.vx-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  padding: 48px 0 32px;
}

.vx-footer__title {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vx-footer-muted);
}

.vx-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.vx-footer__col {
  text-align: left;
}

.vx-footer__col .vx-footer__list {
  justify-items: start;
}

.vx-footer__col a, .vx-footer__brandlink, .vx-footer__legal a {
  color: var(--vx-footer-link);
  text-decoration: none;
}

.vx-footer__col a:hover, .vx-footer__brandlink:hover, .vx-footer__legal a:hover {
  color: var(--vx-footer-link-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vx-footer__highlight-link {
  display: inline-flex;
  margin-top: 4px;
  padding: 9px 12px;
  color: var(--vx-footer-bg) !important;
  font-weight: 700;
  line-height: 1.25;
  background: var(--vx-yellow, #c8a24a);
}

.vx-footer__highlight-link:hover {
  background: var(--vx-footer-link-hover);
  color: var(--vx-footer-bg) !important;
  text-decoration: none !important;
}

.vx-footer__divider {
  border-top: 1px solid var(--vx-footer-border);
  margin: 0 auto;
  max-width: 1120px;
}

.vx-footer__brandrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 36px 0;
}

.vx-footer__brandlock {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  text-align: right;
  max-width: 460px;
  margin-left: auto;
}

.vx-footer__brandtext {
  margin: 0;
  color: var(--vx-footer-muted);
  line-height: 1.45;
}

.vx-footer__logoimg {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.vx-footer__social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.vx-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--vx-footer-link);
  text-decoration: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  transition: transform .2s ease;
}

.vx-icon-link:hover {
  transform: translateY(-2px);
}

.vx-icon-svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.vx-icon-svg--fill {
  fill: currentColor;
  stroke: none;
}

.vx-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 0 28px;
}

.vx-footer__copyright {
  color: var(--vx-footer-muted);
}

.vx-footer__legal {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
}

.vx-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.vx-modal.is-open {
  display: flex;
}

.vx-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .65);
}

.vx-modal__dialog {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 40px 80px rgba(15, 23, 42, .35);
  overflow: hidden;
  max-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
}

.vx-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: rgba(15, 23, 42, .08);
  color: rgba(15, 23, 42, .75);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}

.vx-modal__close:hover {
  background: rgba(15, 23, 42, .15);
}

.vx-modal__body {
  padding: 48px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vx-modal__framewrap {
  position: relative;
  width: 100%;
  min-height: 520px;
}

.vx-modal__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 4px solid rgba(15, 23, 42, .2);
  border-top-color: rgba(15, 23, 42, .7);
  animation: vx-spin .8s linear infinite;
}

.vx-modal__spinner.is-hidden {
  display: none;
}

.vx-modal__iframe {
  border: 0;
  width: 100%;
  height: 520px;
}

body.vx-modal-open {
  overflow: hidden;
}

@keyframes vx-spin {

  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Shared career-list cards used on generated role/career pages. */

.vx-careers-roles {
  display: grid;
  gap: 16px;
}

.vx-careers-role {
  display: block;
  border: 1px solid rgb(226 232 240);
  background: #ffffff;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.vx-careers-role:hover {
  border-color: var(--vx-yellow, #c8a24a);
  box-shadow: 0 22px 50px -34px rgba(15, 23, 42, .45);
  transform: translateY(-1px);
}

.vx-careers-role__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.vx-careers-role__badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgb(226 232 240);
  padding: 4px 8px;
  color: rgb(100 116 139);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vx-careers-role__title {
  margin: 0;
  color: var(--vx-blue, #111111);
  font-size: 1.35rem;
  line-height: 1.15;
  font-weight: 800;
}

.vx-careers-role__summary {
  margin: 10px 0 0;
  color: rgb(71 85 105);
  line-height: 1.55;
}

@media (max-width: 920px) {

  .vx-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {

  .vx-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .vx-footer__brandrow {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .vx-footer__brandlock {
    margin-left: 0;
    align-self: stretch;
    justify-content: flex-start;
    flex-direction: row-reverse;
    text-align: left;
  }

  .vx-footer__brandtext {
    text-align: left;
  }

  .vx-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .vx-modal__body {
    padding: 40px 18px 24px;
  }

  .vx-modal__framewrap {
    min-height: 460px;
  }

  .vx-modal__iframe {
    height: 460px;
  }
}

/* 3. Base layout and typography */

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

html {
  scroll-behavior:smooth;
}

html, body {
  margin:0;
  min-height:100%;
  background: transparent;
}

body {
  font-family: var(--vx-font-body);
  position: relative;
  z-index: 0;
  color:var(--vx-text);
}

img, svg {
  display:block;
  max-width:100%;
}

a {
  color:inherit;
}

.vx-main {
  position:relative;
  z-index:10;
}

.vx-container {
  width:100%;
  max-width:72rem;
  margin:0 auto;
  padding:0 1.5rem;
}

.vx-section {
  position:relative;
  z-index:1;
  padding:4rem 0 5rem;
  scroll-margin-top:9rem;
}

.vx-section--large {
  padding:5rem 0;
}

.vx-section--surface {
  background:var(--vx-surface);
}

.vx-section--soft {
  background:var(--vx-surface-soft);
}

.vx-section-head {
  max-width:48rem;
  margin:0 auto 3rem;
  text-align:center;
}

.vx-section-title {
  margin:0;
  text-align:center;
  color:var(--vx-heading-color);
}

.vx-section-title--left {
  text-align:left;
}

h1, h2 {
  font-family: var(--vx-font-heading);
  font-weight: var(--vx-heading-weight);
  letter-spacing: var(--vx-heading-tracking);
  color:var(--vx-heading-color);
}

h2 {
  font-size:var(--vx-section-heading-size);
  line-height:var(--vx-section-heading-line);
}

.vx-blue-section h1, .vx-blue-section h2 {
  color:var(--vx-surface);
}

/* 4. Homepage hero and fixed navigation */

#home {
  --vx-hero-chrome-inset: clamp(1.5rem, 20vw, 18rem);
  position:relative;
  z-index:50;
  min-height:100svh;
}

.vx-hero-inner {
  position:relative;
  width:100%;
  max-width:72rem;
  height:100svh;
  min-height:100svh;
  margin:0 auto;
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:0 !important;
  padding-bottom:0 !important;
  display:flex;
  align-items:center;
  justify-content:center;
  box-sizing:border-box;
}

#home h1 {
  position:relative;
  z-index:0;
  color:var(--vx-surface);
  font-size: clamp(5rem, 6.4vw, 7rem);
  line-height: .9;
  max-width: 72rem;
  margin:0 auto;
}

#home h1 > span {
  display:block;
  width:100%;
  text-align:center;
}

#home h1 > span:last-child {
  text-decoration:underline;
  text-decoration-color:var(--vx-yellow);
  text-decoration-thickness:.08em;
  text-underline-offset:.12em;
  text-decoration-skip-ink:none;
}

.vx-hero-subhead {
  margin:.75rem 0 0;
  color:rgba(255,255,255,.82);
  font-size:clamp(1.15rem, 1.65vw, 1.55rem);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.vx-hero-copy {
  max-width:72rem;
  min-height:calc(100svh - 10rem);
  margin:0 auto;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.vx-hero-bg-logo {
  position:absolute;
  left:0;
  top:50%;
  width:auto;
  height:min(84svh, 46rem);
  transform:translateY(-50%);
  opacity:var(--vx-hero-logo-opacity);
  filter:brightness(0) invert(1);
  pointer-events:none;
  z-index:0;
}

.vx-hero-chrome-bg {
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:6rem;
  z-index:70;
  pointer-events:none;
  background:transparent;
}

body.vx-hero-chrome-solid .vx-hero-chrome-bg {
  background:var(--vx-midnight);
}

.vx-hero-chrome-bg:after {
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background:rgb(var(--vx-accent-rgb) / .65);
  opacity:0;
  transition:opacity .24s ease;
}

body.vx-hero-chrome-line .vx-hero-chrome-bg:after {
  opacity:1;
}

/* 5. Homepage content sections */

.vx-proof-quote {
  position:relative;
  width:100%;
  max-width:980px;
  margin:0 auto;
  padding:0;
  text-align:center;
}

.vx-proof-quote blockquote {
  margin:0;
  color:var(--vx-text);
  font-family:var(--vx-font-heading);
  font-size:clamp(1.1rem, 1.45vw, 1.45rem);
  line-height:1.42;
}

.vx-proof-quote figcaption {
  margin-top:1.2rem;
  color:var(--vx-muted);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.vx-proof-stars {
  margin-top:1rem;
  color:var(--vx-yellow);
  font-size:1rem;
  letter-spacing:.08em;
  line-height:1;
}

.vx-why-vx {
  display:grid;
  gap:2.5rem;
  justify-items:center;
  text-align:center;
}

.vx-why-vx__lead p {
  margin:0;
  max-width:54rem;
  color:var(--vx-text);
  font-size:1.08rem;
  line-height:1.75;
}

.vx-why-vx__points {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:1.35rem;
  width:100%;
}

.vx-why-vx__points article {
  display:flex;
  flex-direction:column;
  align-items:center;
  min-height:100%;
  padding:1.65rem 1.45rem;
  border:1px solid var(--vx-line);
  background:var(--vx-surface);
  box-shadow:0 24px 60px -52px rgb(var(--vx-shadow) / .45);
}

.vx-why-vx__icon {
  width:3rem;
  height:3rem;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:1rem;
  color:var(--vx-yellow);
}

.vx-why-vx__icon svg {
  width:1.55rem;
  height:1.55rem;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.vx-why-vx__points h3 {
  margin:0;
  color:var(--vx-text);
  font-size:1.08rem;
  font-weight:900;
  line-height:1.25;
}

.vx-why-vx__points p {
  margin:.7rem 0 0;
  color:var(--vx-muted);
  font-size:.95rem;
  line-height:1.58;
}

/* Hero CTA, fixed logo, hamburger, and scroll-down controls. */

.vx-hero-book {
  margin-top:1.4rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:3.15rem;
  padding:.82rem 1.35rem;
  border:1px solid var(--vx-hero-cta-border);
  color:var(--vx-surface);
  font-weight:900;
  text-decoration:none;
  background:rgba(255,255,255,.08);
  transition:background .18s ease, border-color .18s ease;
}

.vx-hero-book-spacer {
  display:none;
  min-height:3.15rem;
  margin-top:1.4rem;
  padding:.82rem 1.35rem;
  visibility:hidden;
  pointer-events:none;
}

body.vx-hero-cta-docked .vx-hero-book-spacer {
  display:inline-flex;
}

body.vx-hero-cta-docked .vx-hero-book {
  position:fixed;
  top:1.5rem;
  left:50%;
  z-index:1000;
  margin-top:0;
  transform:translateX(-50%);
  border-color:var(--vx-hero-cta-border);
  background:rgba(255,255,255,.08);
  color:var(--vx-surface);
  backdrop-filter:blur(10px);
}

body.vx-hero-cta-docked .vx-hero-book:hover {
  border-color:var(--vx-yellow);
  background:var(--vx-yellow);
  color:var(--vx-blue);
}

.vx-hero-book:hover {
  border-color:var(--vx-yellow);
  background:var(--vx-yellow);
  color:var(--vx-blue);
}

.vx-hero-menu {
  position:fixed;
  top:1.5rem;
  right:var(--vx-hero-chrome-inset);
  z-index:120;
  width:3.15rem;
  height:3.15rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--vx-yellow);
  border:0;
  background:transparent;
  cursor:pointer;
  opacity:var(--vx-hero-fade-alpha);
  pointer-events:none;
  transition:opacity .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

body.vx-hero-cta-docked .vx-hero-menu {
  opacity:1;
  pointer-events:auto;
}

.vx-hero-menu:hover {
  background:rgba(255,255,255,.10);
  transform:translateY(-1px);
}

.vx-hero-mark {
  position:fixed;
  top:1.5rem;
  left:var(--vx-hero-chrome-inset);
  z-index:120;
  width:auto;
  height:3.15rem;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
  opacity:var(--vx-hero-fade-alpha);
  transition:opacity .18s ease;
  text-decoration:none;
}

body.vx-hero-cta-docked .vx-hero-mark {
  opacity:1;
  pointer-events:auto;
}

.vx-hero-mark img {
  height:3.15rem;
  width:auto;
  max-width:none;
  display:block;
  filter:drop-shadow(0 12px 24px rgba(2,6,23,.28));
}

.vx-hero-menu svg {
  width:1.85rem;
  height:1.85rem;
  stroke:currentColor;
}

.vx-hero-menu-panel {
  position:fixed;
  top:6rem;
  left:0;
  right:0;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:2.5rem;
  background:var(--vx-midnight);
  border-top:1px solid rgb(var(--vx-accent-rgb) / .22);
  border-bottom:1px solid rgb(var(--vx-accent-rgb) / .35);
  box-shadow:0 24px 60px -42px rgb(var(--vx-shadow) / .85);
  padding:1rem 1.5rem;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(-6px);
  transition:opacity .16s ease, transform .16s ease, visibility .16s ease;
  z-index:140;
}

.vx-hero-menu-panel.is-open {
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0);
}

.vx-hero-menu-panel a {
  position:relative;
  display:inline-flex;
  align-items:center;
  min-height:2rem;
  padding:.25rem 0;
  color:var(--vx-surface);
  font-size:.86rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  text-decoration:none;
}

.vx-hero-menu-panel a:after {
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-.25rem;
  height:1px;
  background:var(--vx-yellow);
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .16s ease;
}

.vx-hero-menu-panel a:hover:after {
  transform:scaleX(1);
}

.vx-hero-down {
  position:absolute;
  left:50%;
  bottom:1.5rem;
  z-index:1;
  width:2.75rem;
  height:2.75rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--vx-surface);
  border:1px solid rgba(255,255,255,.36);
  background:rgba(15,23,42,.18);
  transform:translateX(-50%);
  text-decoration:none;
  transition:background .18s ease, transform .18s ease, border-color .18s ease;
}

.vx-hero-down:hover {
  border-color:rgba(255,255,255,.7);
  background:rgba(15,23,42,.32);
  transform:translate(-50%, 3px);
}

.vx-hero-down svg {
  width:1.25rem;
  height:1.25rem;
  stroke:currentColor;
}

@media (max-width: 767px) {

  .vx-hero-inner {
    min-height: 100svh;
    padding-bottom:5.5rem;
  }

  #home h1 {
    font-size: clamp(3.5rem, 14vw, 4.8rem);
  }

  #home h1 span {
    white-space:normal;
  }

  .vx-proof-quote blockquote {
    font-size:1.05rem;
  }

  .vx-hero-down {
    bottom:1.25rem;
  }

  .vx-hero-menu {
    display:none;
  }

  .vx-hero-mark {
    display:none;
  }
}

@media (max-width: 1200px) {

  #home {
    --vx-hero-chrome-inset: clamp(1.5rem, 12vw, 8rem);
  }
}

.navlink {
  position:relative;
}

.navlink:after {
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  height:2px;
  width:0;
  background:var(--vx-yellow);
  transition:width .2s ease;
}

.navlink:hover:after {
  width:100%;
}

.strike {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(248,113,113,.9);
}

/* Fixed image backplates used by the homepage hero/section transitions. */

#vxFixedBg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: var(--vx-ink);
}

.vx-bg-layer {
  position: absolute;
  inset: -12% -10% -12% -10%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 240ms ease;
  filter: saturate(0.9) contrast(1.05);
  transform: translateZ(0);
  will-change: opacity;
}

.vx-bg-layer.is-active {
  opacity: .28;
}

.vx-blue-section {
  position:relative;
  color:var(--vx-surface);
  background: transparent;
}

.vx-blue-section .vx-overlay {
  position:absolute;
  inset:0;
  z-index:0;
  background:linear-gradient(135deg, rgb(17 17 17 / .88) 0%, rgb(29 29 27 / .82) 100%);
  pointer-events:none;
}

#home .vx-overlay:after {
  content:"";
  position:absolute;
  inset:0;
  background:var(--vx-midnight);
  opacity:var(--vx-hero-fade-alpha);
  transition:opacity .08s linear;
}

.vx-hero-grid {
  position:relative;
  z-index:1;
  display: grid;
  gap: 2rem;
  width:100%;
  justify-items:center;
}

.vx-hero-points {
  margin-top: .25rem;
}

.vx-hero-points__list {
  display: grid;
  gap: .7rem;
}

.vx-hero-point {
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(15,23,42,.24);
  padding: .85rem .95rem;
  box-shadow: 0 12px 28px -22px rgba(2,6,23,.95);
}

.vx-hero-point__title {
  font-weight: 800;
  color: var(--vx-surface);
  font-size: .95rem;
  line-height: 1.2;
}

.vx-hero-point__copy {
  margin-top: .3rem;
  color: rgba(255,255,255,.82);
  font-size: .82rem;
  line-height: 1.35;
}

@media (min-width: 1024px) {

  .vx-hero-grid {
    grid-template-columns: minmax(0, 86rem);
    align-items: center;
    justify-content:center;
  }

  .vx-hero-point {
    padding: 1rem 1rem 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .vx-bg-layer {
    transition: none;
  }
}

/* 6. FAQ, roles, pricing, forms, toast, and responsive page modules */

.vx-faq-list {
  max-width:56rem;
  margin:0 auto;
  background:var(--vx-surface);
  border:1px solid var(--vx-line);
  box-shadow:0 24px 60px -48px rgb(var(--vx-shadow) / .5);
}

details.vx-faq {
  border-top:1px solid var(--vx-line);
  border-left:4px solid transparent;
  padding:1.1rem 1.35rem;
  transition:border-color .16s ease, background-color .16s ease;
}

details.vx-faq:first-child {
  border-top:0;
}

details.vx-faq[open] {
  border-left-color:var(--vx-yellow);
  background:rgb(var(--vx-accent-rgb) / .045);
}

details.vx-faq summary {
  list-style:none;
  cursor:pointer;
  font-size:1.12rem;
  line-height:1.25;
}

.vx-faq-summary {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:1.5rem;
  color:var(--vx-text);
  font-weight:900;
  text-align:left;
}

.vx-faq-plus {
  flex:0 0 auto;
  color:var(--vx-yellow);
  font-weight:900;
  line-height:1;
}

details.vx-faq summary::-webkit-details-marker {
  display:none;
}

details.vx-faq summary:focus {
  outline: 2px solid var(--vx-yellow);
  outline-offset: 4px;
}

.vx-faq-answer {
  display:grid;
  gap:.85rem;
  margin-left:.45rem;
  padding:.9rem 0 0 .35rem;
  color:var(--vx-muted);
  line-height:1.65;
}

.vx-faq-answer p {
  margin:0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Role directory and shared section subheads. */

.vx-ph-title {
  margin:0;
  text-align:center;
}

.vx-pricing-grid {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:1.5rem;
  align-items:stretch;
}

.vx-role-directory {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  border-top:1px solid var(--vx-line);
  border-left:1px solid var(--vx-line);
  background:var(--vx-surface);
}

.vx-role-card {
  min-height:14.5rem;
  padding:1.55rem 1.7rem;
  border-right:1px solid var(--vx-line);
  border-bottom:1px solid var(--vx-line);
  background: linear-gradient(180deg, rgb(var(--vx-accent-rgb) / .08), rgb(var(--vx-accent-rgb) / 0) 44%), var(--vx-surface);
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:.9rem;
}

.vx-role-card h3 {
  margin:0;
  color:var(--vx-heading-color);
  font-size:var(--vx-subsection-heading-size);
  font-family:var(--vx-font-heading);
  font-weight:var(--vx-heading-weight);
  line-height:var(--vx-subsection-heading-line);
  letter-spacing:var(--vx-heading-tracking);
}

.vx-role-card ul {
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:.42rem;
  color:var(--vx-muted);
  font-size:1rem;
  line-height:1.35;
}

.vx-role-card li {
  position:relative;
  padding-left:1.1rem;
}

.vx-role-card li:before {
  content:"";
  position:absolute;
  left:0;
  top:.72em;
  width:.4rem;
  height:.4rem;
  background:var(--vx-yellow);
  transform:translateY(-50%) rotate(45deg);
}

.vx-section-subhead {
  margin:.85rem auto 0;
  max-width:48rem;
  color:var(--vx-subhead-color);
  font-size:var(--vx-subhead-size);
  font-weight:var(--vx-subhead-weight);
  letter-spacing:var(--vx-subhead-tracking);
  line-height:1.4;
  text-align:center;
  text-transform:uppercase;
}

/* Pricing cards. */

.vx-pricing-card {
  display:flex;
  flex-direction:column;
  min-height:100%;
  background:var(--vx-surface);
  border:1px solid var(--vx-line);
  box-shadow:0 24px 60px -48px rgb(var(--vx-shadow) / .5);
  padding:2.2rem;
}

.vx-pricing-card h3 {
  margin:0;
  color:var(--vx-heading-color);
  font-family:var(--vx-font-heading);
  font-size:clamp(1.65rem, 2.4vw, 2.15rem);
  font-weight:var(--vx-heading-weight);
  line-height:1.05;
}

.vx-pricing-desc {
  margin:.8rem 0 0;
  color:var(--vx-muted);
  line-height:1.55;
}

.vx-pricing-price {
  margin-top:1rem;
  color:var(--vx-text);
  font-size:2.2rem;
  font-weight:900;
  line-height:1;
}

.vx-pricing-price span {
  display:block;
  margin-bottom:.3rem;
  color:var(--vx-muted);
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.vx-pricing-price strong {
  display:block;
  font-size:2.2rem;
  font-weight:900;
  line-height:1;
}

.vx-pricing-unit {
  font-size:.95rem;
  color:var(--vx-muted);
  font-weight:800;
}

.vx-pricing-card ul {
  margin:1.4rem 0 0;
  padding:1.4rem 0 0;
  border-top:1px solid var(--vx-line);
  list-style:none;
  display:grid;
  gap:.7rem;
  color:var(--vx-muted);
  font-size:.92rem;
  line-height:1.42;
}

.vx-pricing-card li {
  position:relative;
  padding-left:1.1rem;
  white-space:nowrap;
}

.vx-pricing-card li:before {
  content:"";
  position:absolute;
  left:0;
  top:.65em;
  width:.42rem;
  height:.42rem;
  background:var(--vx-yellow);
  transform:translateY(-50%);
}

.vx-pricing-note {
  margin:1rem 0 0;
  color:var(--vx-muted);
  font-size:.86rem;
  line-height:1.45;
  text-align:center;
}

.vx-pricing-card--featured {
  border-color:rgb(var(--vx-accent-rgb) / .8);
  box-shadow:inset 0 4px 0 var(--vx-yellow), 0 28px 70px -52px rgb(var(--vx-shadow) / .65);
  transform:translateY(-.45rem);
}

.vx-pricing-cta {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:3rem;
  margin-top:1.6rem;
  padding:.8rem 1.15rem;
  border:1px solid var(--vx-yellow);
  background:var(--vx-yellow);
  color:var(--vx-blue);
  font-size:.9rem;
  font-weight:900;
  text-decoration:none;
}

.vx-pricing-cta:hover {
  background:transparent;
  color:var(--vx-text);
}

/* Philippines proof/data section. */

@media (max-width: 1023px) {

  .vx-why-vx {
    grid-template-columns:1fr;
    gap:2rem;
  }

  .vx-role-directory {
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .vx-pricing-grid {
    grid-template-columns:1fr;
  }

  .vx-pricing-grid {
    grid-template-columns:1fr;
  }
}

@media (max-width: 767px) {

  .vx-role-directory {
    grid-template-columns:1fr;
  }
}

.vx-ph-stat {
  display:grid;
  grid-template-columns:3rem minmax(0, 1fr);
  gap:1.2rem;
  align-items:start;
  padding:1.55rem 0;
  border-top:1px solid var(--vx-line);
}

.vx-ph-stat:last-child {
  border-bottom:1px solid var(--vx-line);
}

.vx-ph-icon {
  width:2.2rem;
  height:2.2rem;
  display:flex;
  align-items:center;
  justify-content:center;
  place-items:center;
  color:var(--vx-text);
  background:transparent;
  border:0;
}

.vx-ph-icon svg {
  width:2rem;
  height:2rem;
  stroke-width:2;
  stroke:currentColor;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.vx-ph-chart {
  display:grid;
  gap:.75rem;
  padding:1.85rem 2rem;
  background:var(--vx-surface);
  border:1px solid var(--vx-line);
  box-shadow:0 24px 60px -48px rgb(var(--vx-shadow) / .5);
}

.vx-ph-row {
  display:grid;
  grid-template-columns:7rem minmax(0, 1fr) 3.5rem;
  gap:.8rem;
  align-items:center;
  color:var(--vx-text);
  font-size:.9rem;
}

.vx-ph-bar {
  height:.7rem;
  background:var(--vx-line);
  overflow:hidden;
}

.vx-ph-fill {
  display:block;
  height:100%;
  background:var(--vx-muted);
}

.vx-ph-row--highlight {
  color:var(--vx-blue);
  font-weight:900;
}

.vx-ph-row--highlight .vx-ph-fill {
  background:var(--vx-yellow);
}

.vx-ph-source {
  margin-top:1rem;
  color:var(--vx-muted);
  font-size:.78rem;
  text-align:center;
}

.vx-ph-chart-block h3 {
  margin:0;
}

.vx-ph-chart-block {
  background:var(--vx-surface);
  border:1px solid var(--vx-line);
  padding:2rem;
  box-shadow:0 24px 60px -48px rgb(var(--vx-shadow) / .5);
}

.vx-ph-chart-block .vx-ph-chart {
  margin-top:1.2rem;
  padding:1.1rem 0 0;
  border:0;
  border-top:1px solid var(--vx-line);
  box-shadow:none;
}

.vx-ph-layout {
  display:grid;
  grid-template-columns:minmax(0, .92fr) minmax(25rem, 1.08fr);
  gap:4.5rem;
  align-items:center;
}

.vx-ph-left {
  min-width:0;
  align-self:center;
}

.vx-ph-right {
  min-width:0;
  display:grid;
  gap:1.5rem;
  align-content:center;
}

@media (max-width: 1023px) {

  .vx-ph-layout {
    grid-template-columns:1fr;
  }
}

.vx-ph-section {
  position:relative;
  z-index:1;
  background:var(--vx-surface-soft);
  scroll-margin-top:9rem;
}

.vx-ph-section--surface {
  background:var(--vx-surface);
}

.vx-ph-inner {
  max-width:1120px;
  margin:0 auto;
  padding:4rem 1.5rem 6rem;
}

/* Contact form. */

.vx-contact-grid {
  display:grid;
  grid-template-columns:minmax(0, 5fr) minmax(0, 7fr);
  gap:3rem;
  align-items:start;
}

.vx-contact-stack {
  width:100%;
}

.vx-contact-head {
  max-width:none;
  margin-bottom:2.5rem;
}

.vx-contact-form-wrap {
  width:100%;
}

.vx-contact-intro {
  margin:1rem 0 0;
  color:var(--vx-muted);
  font-size:1.08rem;
  line-height:1.65;
}

.vx-contact-notes {
  margin-top:2rem;
  padding:.25rem 0 .25rem 1.25rem;
  border-left:2px solid var(--vx-yellow);
}

.vx-contact-note-title {
  margin:0 0 .85rem;
  color:var(--vx-muted);
  font-size:.76rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.vx-contact-note-list {
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:1rem;
  color:var(--vx-text);
  font-size:.95rem;
  line-height:1.5;
}

.vx-contact-form {
  background:var(--vx-surface);
  border:1px solid var(--vx-line);
  padding:2rem;
  box-shadow:0 24px 60px -48px rgb(var(--vx-shadow) / .5);
}

.vx-form-grid {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:1.25rem;
  margin-top:1.25rem;
}

.vx-form-grid:first-of-type {
  margin-top:0;
}

.vx-form-field {
  margin-top:1.25rem;
}

.vx-label {
  display:block;
  color:var(--vx-text);
  font-size:.9rem;
  font-weight:800;
  line-height:1.2;
}

.vx-input {
  display:block;
  width:100%;
  margin-top:.55rem;
  padding:.9rem 1rem;
  border:1px solid var(--vx-line);
  border-radius:0;
  background:var(--vx-surface);
  color:var(--vx-text);
  font:inherit;
  line-height:1.4;
}

.vx-contact-form .vx-input {
  margin-top:0;
}

.vx-input::placeholder {
  color:rgb(100 116 139 / .78);
}

.vx-input:focus {
  outline:0;
  border-color:var(--vx-yellow);
  box-shadow:0 0 0 3px rgb(var(--vx-accent-rgb) / .18);
}

.vx-textarea {
  min-height:9rem;
  resize:vertical;
}

.vx-form-choice {
  margin:1.25rem 0 0;
  padding:0;
  border:0;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:1.25rem;
}

.vx-radio-card {
  min-height:3.15rem;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.6rem;
  border:1px solid var(--vx-line);
  background:var(--vx-surface);
  color:var(--vx-text);
  font-weight:900;
  cursor:pointer;
  transition:border-color .18s ease, background .18s ease, color .18s ease;
}

.vx-radio-card input {
  width:1rem;
  height:1rem;
  accent-color:var(--vx-yellow);
}

.vx-radio-card:has(input:checked) {
  border-color:var(--vx-yellow);
  background:rgb(var(--vx-accent-rgb) / .1);
}

.vx-slider-panel {
  display:none;
  margin-top:1.25rem;
  padding:1.25rem;
  border:1px solid var(--vx-line);
  background:rgb(var(--vx-accent-rgb) / .045);
}

.vx-slider-panel.is-active {
  display:block;
}

.vx-slider-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  color:var(--vx-text);
  font-size:.92rem;
  font-weight:900;
}

.vx-slider-head output {
  color:var(--vx-muted);
  font-weight:800;
}

.vx-range {
  width:100%;
  margin:1.1rem 0 .7rem;
  accent-color:var(--vx-yellow);
}

.vx-slider-scale {
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:var(--vx-muted);
  font-size:.8rem;
  font-weight:800;
}

.vx-form-actions {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:1.25rem;
  margin-top:1.5rem;
  flex-wrap:wrap;
}

.vx-submit {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:3.15rem;
  padding:.82rem 1.35rem;
  border:1px solid var(--vx-yellow);
  background:var(--vx-yellow);
  color:var(--vx-blue);
  font:inherit;
  font-weight:900;
  cursor:pointer;
}

.vx-submit:hover {
  background:transparent;
  color:var(--vx-text);
}

.vx-status {
  min-height:1.25rem;
  margin:1rem 0 0;
  color:var(--vx-muted);
  font-size:.9rem;
  text-align:center;
}

.vx-status.is-pending,
.vx-status.is-success,
.vx-status.is-error {
  padding:.85rem 1rem;
  border:1px solid var(--vx-line);
  background:var(--vx-surface);
}

.vx-status.is-pending {
  color:var(--vx-text);
}

.vx-status.is-success {
  color:var(--vx-text);
  border-color:rgb(var(--vx-accent-rgb) / .55);
  background:rgb(var(--vx-accent-rgb) / .12);
}

.vx-status.is-error {
  color:#7f1d1d;
  border-color:#fecaca;
  background:#fef2f2;
}

/* Scroll-triggered CTA toast. */

.vx-toast-cta {
  position:fixed;
  right:2rem;
  bottom:2rem;
  z-index:950;
  width:min(20rem, calc(100vw - 4rem));
  padding:1.35rem 1.35rem 1.25rem;
  background:linear-gradient(135deg, var(--vx-ink) 0%, var(--vx-midnight) 100%);
  color:var(--vx-surface);
  border:1px solid rgb(var(--vx-accent-rgb) / .48);
  border-left:4px solid var(--vx-yellow);
  box-shadow:0 30px 90px -42px rgb(var(--vx-shadow) / .95);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(1rem);
  transition:opacity .56s ease, transform .56s ease, visibility .56s ease;
}

.vx-toast-cta.is-visible {
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0);
}

.vx-toast-cta p {
  margin:0;
  padding-right:2.25rem;
  color:var(--vx-surface);
  font-family:var(--vx-font-heading);
  font-size:1.14rem;
  font-weight:500;
  line-height:1.28;
}

.vx-toast-cta a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  margin-top:1.15rem;
  min-height:3rem;
  padding:.8rem 1.1rem;
  background:transparent;
  border:1px solid var(--vx-yellow);
  color:var(--vx-yellow);
  font-size:.86rem;
  font-weight:900;
  line-height:1;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.vx-toast-cta a:hover {
  background:var(--vx-yellow);
  color:var(--vx-ink);
}

.vx-toast-close {
  position:absolute;
  top:.75rem;
  right:.75rem;
  width:2rem;
  height:2rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgb(255 255 255 / .18);
  background:rgb(255 255 255 / .06);
  color:rgb(255 255 255 / .76);
  font-size:1.35rem;
  line-height:1;
  cursor:pointer;
  transition:color .18s ease, border-color .18s ease, background .18s ease;
}

.vx-toast-close:hover {
  border-color:rgb(var(--vx-accent-rgb) / .65);
  background:rgb(var(--vx-accent-rgb) / .12);
  color:var(--vx-yellow);
}

.vx-ph-title + .vx-section-subhead {
  margin-bottom:3rem;
}

.vx-ph-list {
  margin-top:0;
}

.vx-ph-stat h3 {
  margin:0;
  color:var(--vx-text);
  font-size:1.08rem;
  font-weight:900;
  line-height:1.25;
}

.vx-ph-stat p {
  margin:.6rem 0 0;
  color:var(--vx-muted);
  font-size:.98rem;
  line-height:1.65;
}

.vx-ph-chart-title {
  margin:0;
  color:var(--vx-text);
  font-size:.92rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

@media (max-width: 767px) {

  .vx-ph-inner {
    padding:3.25rem 1.5rem 4rem;
  }
}

@media (max-width: 767px) {

  .vx-ph-row {
    grid-template-columns:5.8rem minmax(0, 1fr) 3rem;
    font-size:.82rem;
  }
}
