
:root {
  --vefa-primary: #3498db;
  --vefa-primary-dark: #2980b9;
  --vefa-primary-darker: #1f6396;
  --vefa-primary-soft: rgba(52, 152, 219, .08);
  --vefa-accent: #ff4000;
  --vefa-accent-dark: #d93600;
  --vefa-accent-soft: rgba(255, 64, 0, .08);
  --vefa-brand-vefa: #5593b8;
  --vefa-success: #16a34a;
  --vefa-warning: #f59e0b;
  --vefa-danger: #dc2626;
  --vefa-text: #0f172a;
  --vefa-text-strong: #020617;
  --vefa-text-muted: #475569;
  --vefa-text-subtle: #94a3b8;
  --vefa-bg: #ffffff;
  --vefa-bg-soft: #f8fafc;
  --vefa-bg-muted: #f1f5f9;
  --vefa-border: #e2e8f0;
  --vefa-border-strong: #cbd5e1;
  --vefa-border-subtle: #f1f5f9;
  --vefa-promoter: #0f1729;
  --vefa-promoter-soft: #1e293b;
  --vefa-gold: #d4a017;
  --vefa-gradient-hero: linear-gradient(135deg, #eff6ff 0%, #ffffff 55%, #fff7ed 100%);
  --vefa-gradient-cta: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  --vefa-gradient-accent: linear-gradient(135deg, #ff4000 0%, #ff7a45 100%);
  --vefa-gradient-promoter: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --vefa-shadow-sm: 0 8px 24px rgba(15, 23, 42, .07);
  --vefa-shadow-md: 0 20px 60px rgba(15, 23, 42, .11);
  --vefa-shadow-lg: 0 32px 90px rgba(15, 23, 42, .16);
  --vefa-ease: cubic-bezier(.22, 1, .36, 1);
  --serif-heading: Charter, "Bitstream Charter", "PT Serif", Georgia, serif;
  --serif-body: "Source Serif Pro", Charter, Georgia, serif;
  --ui: var(--font-ui), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--vefa-bg);
  color: var(--vefa-text);
  font-family: var(--serif-body);
  font-size: 18px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
summary {
  font-family: var(--ui);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: rgba(52, 152, 219, .22);
}

.utility-bar {
  min-height: 38px;
  padding: 7px max(24px, calc((100vw - 1200px) / 2));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: var(--vefa-primary-darker);
  color: #fff;
  font-family: var(--ui);
  font-size: 12px;
  line-height: 1.35;
}

.utility-bar p {
  margin: 0;
  color: #eaf4fb;
}

.utility-bar a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-weight: 750;
}

.utility-bar a:hover span {
  transform: translate(2px, -2px);
}

.utility-bar a span {
  transition: transform 250ms var(--vefa-ease);
}

.site-header {
  position: relative;
  z-index: 20;
  width: min(1200px, calc(100% - 48px));
  min-height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  font-family: var(--ui);
}

.brand-link,
.footer-brand > a {
  display: inline-flex;
  width: fit-content;
}

.brand-word {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  color: var(--vefa-brand-vefa);
  font-family: var(--ui);
  font-size: 23px;
  font-weight: 780;
  letter-spacing: -.045em;
  line-height: 1;
}

.brand-word strong {
  color: var(--vefa-text);
  font-weight: 780;
}

.brand-word i {
  position: absolute;
  width: 6px;
  height: 6px;
  right: -9px;
  top: -2px;
  border-radius: 999px;
  background: var(--vefa-accent);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--vefa-text-muted);
  font-size: 13px;
  font-weight: 600;
}

.site-header nav a {
  transition: color 150ms ease;
}

.site-header nav a:hover {
  color: var(--vefa-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.login-link {
  color: var(--vefa-text-muted);
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 650;
}

.login-link:hover {
  color: var(--vefa-primary);
}

.ui-button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  box-shadow: var(--vefa-shadow-sm);
  transition:
    transform 250ms var(--vefa-ease),
    box-shadow 250ms var(--vefa-ease),
    background 150ms ease;
}

.ui-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .14);
}

.ui-button-small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 12px;
}

.ui-button-primary {
  background: var(--vefa-primary);
}

.ui-button-primary:hover {
  background: var(--vefa-primary-dark);
}

.ui-button-accent {
  background: var(--vefa-gradient-accent);
}

.ui-button-accent:hover {
  background: linear-gradient(135deg, var(--vefa-accent-dark), #ff6230);
}

.ui-button-light {
  background: #fff;
  color: var(--vefa-promoter);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--vefa-gradient-hero);
  border-top: 1px solid var(--vefa-border-subtle);
  border-bottom: 1px solid var(--vefa-border);
}

.hero::before {
  position: absolute;
  width: 520px;
  height: 520px;
  top: -300px;
  left: -250px;
  border: 1px solid rgba(52, 152, 219, .17);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  width: 400px;
  height: 400px;
  right: -230px;
  bottom: -240px;
  border: 1px solid rgba(255, 64, 0, .14);
  border-radius: 50%;
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  min-height: 700px;
  margin: 0 auto;
  padding: 78px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: 80px;
}

.hero-copy {
  max-width: 610px;
}

.eyebrow {
  width: fit-content;
  padding: 7px 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(52, 152, 219, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: var(--vefa-primary-darker);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--vefa-accent);
  box-shadow: 0 0 0 4px var(--vefa-accent-soft);
}

h1,
h2,
h3,
blockquote {
  font-family: var(--serif-heading);
  letter-spacing: -.02em;
}

.hero h1 {
  margin: 23px 0 24px;
  color: var(--vefa-text-strong);
  font-size: clamp(58px, 5.4vw, 82px);
  font-weight: 700;
  line-height: .98;
}

.hero h1 em {
  position: relative;
  color: var(--vefa-primary);
  font-weight: 400;
}

.hero h1 em::after {
  position: absolute;
  height: 4px;
  left: 3px;
  right: -8px;
  bottom: -4px;
  border-radius: 999px;
  background: var(--vefa-accent);
  content: "";
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 580px;
  margin: 0 0 30px;
  color: var(--vefa-text-muted);
  font-size: 19px;
  line-height: 1.58;
}

.program-search {
  max-width: 590px;
  padding: 9px 9px 9px 18px;
  border: 1px solid var(--vefa-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--vefa-shadow-md);
}

.program-search label {
  display: block;
  margin: 0 0 3px 27px;
  color: var(--vefa-text-subtle);
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.program-search > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
}

.search-symbol {
  color: var(--vefa-primary);
  font-family: var(--ui);
  font-size: 23px;
  line-height: 1;
}

.program-search input {
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--vefa-text);
  font-size: 15px;
}

.program-search input::placeholder {
  color: var(--vefa-text-subtle);
}

.program-search button {
  min-height: 47px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  background: var(--vefa-primary);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  transition: background 150ms ease;
}

.program-search button:hover {
  background: var(--vefa-primary-dark);
}

.program-search:focus-within {
  border-color: var(--vefa-primary);
  box-shadow: 0 0 0 4px var(--vefa-primary-soft), var(--vefa-shadow-md);
}

.hero-notes {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--vefa-text-muted);
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 600;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.check {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(22, 163, 74, .1);
  color: var(--vefa-success);
  font-family: var(--ui);
  font-size: 11px;
  font-style: normal;
}

.product-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.stage-grid {
  position: absolute;
  inset: 4% -7% 0 5%;
  border-radius: 32px;
  background-image:
    linear-gradient(rgba(52, 152, 219, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 152, 219, .08) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 82%, transparent);
}

.community-card {
  position: relative;
  z-index: 2;
  width: min(495px, 84%);
  padding: 24px;
  border: 1px solid rgba(203, 213, 225, .9);
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--vefa-shadow-lg);
  font-family: var(--ui);
  transform: rotate(1deg);
}

.community-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.overline {
  color: var(--vefa-primary);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.community-top h2 {
  margin: 5px 0 3px;
  color: var(--vefa-text-strong);
  font-size: 25px;
  font-weight: 700;
}

.community-top p {
  margin: 0;
  color: var(--vefa-text-subtle);
  font-size: 10px;
}

.phase-badge {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--vefa-primary-soft);
  color: var(--vefa-primary-darker);
  font-size: 9px;
  font-weight: 750;
  white-space: nowrap;
}

.project-progress {
  margin: 21px 0;
  padding: 16px;
  border-radius: 12px;
  background: var(--vefa-bg-soft);
}

.progress-heading {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--vefa-text-subtle);
  font-size: 9px;
}

.progress-heading strong {
  color: var(--vefa-text-muted);
  font-size: 9px;
}

.progress-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
}

.progress-line::before,
.progress-line::after {
  position: absolute;
  height: 2px;
  left: 9%;
  right: 9%;
  top: 5px;
  content: "";
}

.progress-line::before {
  background: var(--vefa-border-strong);
}

.progress-line::after {
  width: 50%;
  right: auto;
  background: var(--vefa-primary);
}

.progress-line i {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  border: 2px solid var(--vefa-border-strong);
  border-radius: 50%;
  background: #fff;
}

.progress-line i.done {
  border-color: var(--vefa-primary);
  background: var(--vefa-primary);
}

.progress-line i.active {
  border-color: var(--vefa-accent);
  box-shadow: 0 0 0 4px var(--vefa-accent-soft);
}

.progress-labels {
  margin-top: 7px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  color: var(--vefa-text-subtle);
  font-size: 7px;
  text-align: center;
}

.feed {
  padding: 0 2px;
}

.feed-heading {
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  color: var(--vefa-text-subtle);
  font-size: 9px;
}

.feed-heading strong {
  color: var(--vefa-text-muted);
  font-size: 10px;
}

.feed-item {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 10px;
  border-bottom: 1px solid var(--vefa-border-subtle);
}

.avatar {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.avatar-blue {
  background: var(--vefa-primary-soft);
  color: var(--vefa-primary-darker);
}

.avatar-orange {
  background: var(--vefa-accent-soft);
  color: var(--vefa-accent-dark);
}

.feed-item p {
  margin: 0 0 4px;
  color: var(--vefa-text-muted);
  font-size: 10px;
  line-height: 1.45;
}

.feed-item p strong {
  color: var(--vefa-text);
}

.feed-action {
  color: var(--vefa-primary);
  font-size: 8px;
  font-weight: 700;
}

.feed-action b {
  color: var(--vefa-accent);
}

.card-actions {
  margin-top: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--vefa-text-subtle);
  font-size: 8px;
  font-weight: 650;
}

.card-actions button {
  min-height: 34px;
  padding: 0 13px;
  border: 0;
  border-radius: 8px;
  background: var(--vefa-accent);
  color: #fff;
  font-size: 9px;
  font-weight: 750;
}

.floating-note {
  position: absolute;
  z-index: 4;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--vefa-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--vefa-shadow-md);
  font-family: var(--ui);
}

.floating-note strong,
.floating-note small {
  display: block;
}

.floating-note strong {
  color: var(--vefa-text);
  font-size: 10px;
}

.floating-note small {
  margin-top: 2px;
  color: var(--vefa-text-subtle);
  font-size: 8px;
}

.note-photo {
  top: 14%;
  left: -2%;
}

.note-neighbor {
  right: -2%;
  bottom: 10%;
}

.note-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--vefa-primary-soft);
  color: var(--vefa-primary);
  font-family: var(--ui);
  font-size: 21px;
}

.stacked-avatars {
  display: flex;
  padding-left: 9px;
}

.stacked-avatars span {
  width: 29px;
  height: 29px;
  margin-left: -9px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #dbeafe;
  color: var(--vefa-primary-darker);
  font-size: 8px;
  font-weight: 800;
}

.stacked-avatars span:nth-child(2) {
  background: #ffedd5;
  color: var(--vefa-accent-dark);
}

.stacked-avatars span:nth-child(3) {
  background: #dcfce7;
  color: #15803d;
}

.promise-strip {
  width: min(1200px, calc(100% - 48px));
  min-height: 116px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border-bottom: 1px solid var(--vefa-border);
}

.promise-strip > div {
  min-height: 54px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--vefa-border);
}

.promise-strip > div:first-child {
  padding-left: 0;
}

.promise-strip > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.strip-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--vefa-primary-soft);
  color: var(--vefa-primary);
  font-family: var(--ui);
  font-size: 19px;
}

.promise-strip p {
  margin: 0;
  color: var(--vefa-text-muted);
  font-family: var(--ui);
  font-size: 11px;
  line-height: 1.45;
}

.promise-strip strong {
  display: block;
  color: var(--vefa-text);
  font-size: 12px;
}

.section {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0;
}

.section-label {
  color: var(--vefa-primary-darker);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-label-orange {
  color: var(--vefa-accent-dark);
}

.section-label-light {
  color: #93c5fd;
}

.problem-section {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 55px 100px;
}

.problem-heading h2,
.section-head h2,
.warning-card h2,
.how-copy h2,
.promoter-copy h2,
.faq-heading h2,
.final-cta h2 {
  margin: 12px 0 0;
  color: var(--vefa-text-strong);
  font-size: clamp(44px, 4.6vw, 66px);
  font-weight: 700;
  line-height: 1.03;
}

.problem-intro {
  align-self: end;
}

.problem-intro p {
  margin: 0 0 16px;
  color: var(--vefa-text-muted);
  font-size: 18px;
}

.problem-intro p:last-child {
  margin: 0;
  color: var(--vefa-primary-darker);
  font-weight: 700;
}

.pain-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--vefa-border-strong);
}

.pain-card {
  min-height: 290px;
  padding: 32px;
  border-right: 1px solid var(--vefa-border);
}

.pain-card:first-child {
  padding-left: 0;
}

.pain-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.pain-card > span {
  display: block;
  margin-bottom: 50px;
  color: var(--vefa-accent);
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 800;
}

.pain-card h3 {
  margin: 0 0 16px;
  color: var(--vefa-text);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.pain-card p {
  margin: 0;
  color: var(--vefa-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.warning-section {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto 112px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  border: 1px solid rgba(255, 64, 0, .18);
  border-radius: 24px;
  overflow: hidden;
  background: var(--vefa-accent-soft);
}

.warning-card {
  position: relative;
  padding: 64px;
  background: #fff8f5;
}

.warning-marker {
  position: absolute;
  width: 42px;
  height: 42px;
  top: 28px;
  right: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--vefa-accent);
  color: #fff;
  font-family: var(--serif-heading);
  font-size: 25px;
  font-weight: 700;
}

.warning-card h2 {
  max-width: 650px;
  margin-top: 16px;
  font-size: clamp(37px, 3.4vw, 52px);
}

.warning-card p {
  max-width: 680px;
  margin: 24px 0 30px;
  color: var(--vefa-text-muted);
  font-size: 17px;
}

.warning-card a,
.editorial-link {
  padding-bottom: 5px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid currentColor;
  color: var(--vefa-primary-darker);
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 750;
}

.warning-card a:hover,
.editorial-link:hover {
  color: var(--vefa-accent);
}

.warning-section aside {
  padding: 64px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--vefa-accent);
  color: #fff;
}

.quote-mark {
  height: 58px;
  font-family: Georgia, serif;
  font-size: 82px;
  line-height: 1;
  opacity: .55;
}

.warning-section blockquote {
  margin: 10px 0 24px;
  font-size: clamp(25px, 2.3vw, 34px);
  font-weight: 400;
  line-height: 1.24;
}

.warning-section aside p {
  margin: 0;
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  opacity: .8;
}

.section-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 90px;
}

.section-head h2 {
  max-width: 760px;
}

.section-head > p {
  margin: 0 0 5px;
  color: var(--vefa-text-muted);
  font-size: 17px;
}

.uses-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.use-card {
  min-height: 530px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--vefa-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--vefa-shadow-sm);
  transition:
    transform 250ms var(--vefa-ease),
    box-shadow 250ms var(--vefa-ease);
}

.use-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--vefa-shadow-md);
}

.use-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--ui);
}

.use-index {
  color: var(--vefa-text-subtle);
  font-size: 10px;
}

.use-label {
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.use-blue .use-label {
  background: var(--vefa-primary-soft);
  color: var(--vefa-primary-darker);
}

.use-orange .use-label {
  background: var(--vefa-accent-soft);
  color: var(--vefa-accent-dark);
}

.use-slate .use-label {
  background: var(--vefa-bg-muted);
  color: var(--vefa-text-muted);
}

.use-illustration {
  height: 175px;
  margin: 25px 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
}

.use-blue .use-illustration {
  background: var(--vefa-primary-soft);
}

.use-orange .use-illustration {
  background: var(--vefa-accent-soft);
}

.use-slate .use-illustration {
  background: var(--vefa-bg-muted);
}

.chat-lines {
  width: 80%;
}

.chat-lines i {
  display: block;
  width: 70%;
  height: 34px;
  margin: 9px 0;
  border-radius: 10px 10px 10px 3px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, .06);
}

.chat-lines i::after {
  display: block;
  width: 52%;
  height: 5px;
  margin: 14px;
  border-radius: 999px;
  background: var(--vefa-primary);
  content: "";
  opacity: .55;
}

.chat-lines i:nth-child(2) {
  margin-left: auto;
  border-radius: 10px 10px 3px 10px;
  background: var(--vefa-primary);
}

.chat-lines i:nth-child(2)::after {
  background: #fff;
}

.chat-lines i:nth-child(3) {
  width: 52%;
}

.photo-stack {
  position: relative;
  width: 190px;
  height: 125px;
}

.photo-stack i {
  position: absolute;
  width: 140px;
  height: 105px;
  border: 5px solid #fff;
  border-radius: 8px;
  background:
    linear-gradient(150deg, transparent 0 55%, rgba(255, 64, 0, .36) 55%),
    linear-gradient(35deg, #ffd7c9, #fff);
  box-shadow: 0 9px 25px rgba(15, 23, 42, .1);
}

.photo-stack i:nth-child(1) {
  left: 0;
  top: 16px;
  transform: rotate(-8deg);
}

.photo-stack i:nth-child(2) {
  right: 0;
  top: 12px;
  transform: rotate(8deg);
}

.photo-stack i:nth-child(3) {
  left: 25px;
  top: 0;
  background:
    linear-gradient(150deg, transparent 0 55%, rgba(52, 152, 219, .26) 55%),
    linear-gradient(35deg, #e0f2fe, #fff);
}

.guide-sheet {
  width: 150px;
  height: 125px;
  padding: 25px 22px;
  border: 1px solid var(--vefa-border);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--vefa-shadow-sm);
}

.guide-sheet i {
  display: block;
  height: 6px;
  margin-bottom: 11px;
  border-radius: 999px;
  background: var(--vefa-border-strong);
}

.guide-sheet i:first-child {
  width: 50%;
  background: var(--vefa-text-muted);
}

.guide-sheet i:nth-child(3) {
  width: 80%;
}

.use-card h3 {
  margin: 0 0 14px;
  color: var(--vefa-text);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.16;
}

.use-card > p {
  margin: 0 0 26px;
  color: var(--vefa-text-muted);
  font-size: 15px;
}

.use-card > a {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--vefa-border);
  color: var(--vefa-primary-darker);
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 750;
}

.use-card > a span {
  color: var(--vefa-accent);
}

.how-section {
  padding: 110px max(24px, calc((100vw - 1200px) / 2));
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 110px;
  background: var(--vefa-primary-darker);
  color: #fff;
}

.how-copy h2 {
  color: #fff;
}

.how-copy > p {
  max-width: 480px;
  margin: 24px 0 30px;
  color: #dbeafe;
  font-size: 17px;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.steps li {
  min-height: 145px;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.steps li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: #fff;
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 800;
}

.steps li:nth-child(2) > span {
  border-color: var(--vefa-accent);
  background: var(--vefa-accent);
}

.steps strong {
  font-family: var(--serif-heading);
  font-size: 25px;
  font-weight: 700;
}

.steps p {
  margin: 4px 0 0;
  color: #bfdbfe;
  font-size: 14px;
}

.section-head-resources {
  align-items: end;
}

.section-head-resources .editorial-link {
  justify-self: end;
}

.resource-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.resource-card {
  border: 1px solid var(--vefa-border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--vefa-shadow-sm);
  transition:
    transform 250ms var(--vefa-ease),
    box-shadow 250ms var(--vefa-ease);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--vefa-shadow-md);
}

.resource-visual {
  position: relative;
  height: 205px;
  padding: 20px;
  overflow: hidden;
}

.resource-visual-1 {
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
}

.resource-visual-2 {
  background: linear-gradient(135deg, #ffedd5, #fff7ed);
}

.resource-visual-3 {
  background: linear-gradient(135deg, #e2e8f0, #f8fafc);
}

.resource-visual > span {
  position: relative;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  color: var(--vefa-text-muted);
  font-family: var(--ui);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.resource-pattern {
  position: absolute;
  inset: 65px 40px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 14px;
}

.resource-pattern i {
  height: 65%;
  border: 1px solid rgba(15, 23, 42, .22);
  background: rgba(255, 255, 255, .34);
}

.resource-pattern i:nth-child(2) {
  height: 100%;
}

.resource-pattern i:nth-child(3) {
  height: 78%;
}

.resource-copy {
  padding: 25px;
}

.resource-copy small {
  color: var(--vefa-primary-darker);
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.resource-copy h3 {
  margin: 10px 0 26px;
  color: var(--vefa-text);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.resource-copy > span {
  color: var(--vefa-text-muted);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 700;
}

.promoter-section {
  width: min(1200px, calc(100% - 48px));
  min-height: 510px;
  margin: 0 auto;
  padding: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 95px;
  border-radius: 24px;
  background: var(--vefa-gradient-promoter);
  color: #fff;
}

.promoter-visual {
  position: relative;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    #111d31;
  background-size: 26px 26px;
}

.kpi {
  position: absolute;
  width: 180px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(2, 6, 23, .25);
  font-family: var(--ui);
}

.kpi small,
.kpi strong {
  display: block;
}

.kpi small {
  margin-bottom: 10px;
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .75;
}

.kpi strong {
  font-size: 17px;
}

.kpi-blue {
  left: 30px;
  top: 38px;
  background: #173655;
  color: #bfdbfe;
}

.kpi-green {
  right: 28px;
  top: 110px;
  background: #16372d;
  color: #bbf7d0;
}

.kpi-gold {
  left: 75px;
  bottom: 33px;
  background: #3b321c;
  color: #fde68a;
}

.kpi-gold::before {
  position: absolute;
  width: 7px;
  height: 7px;
  right: 13px;
  top: 13px;
  border-radius: 50%;
  background: var(--vefa-gold);
  content: "";
}

.promoter-copy h2 {
  color: #fff;
  font-size: clamp(39px, 3.8vw, 56px);
}

.promoter-copy p {
  margin: 24px 0 30px;
  color: #cbd5e1;
  font-size: 16px;
}

.faq-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 110px;
}

.faq-heading h2 {
  margin-bottom: 32px;
  font-size: clamp(39px, 3.8vw, 56px);
}

.faq-list {
  border-top: 1px solid var(--vefa-border-strong);
}

.faq-list details {
  padding: 25px 0;
  border-bottom: 1px solid var(--vefa-border);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: var(--vefa-text);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary span {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--vefa-primary-soft);
  color: var(--vefa-primary);
  font-size: 18px;
  font-weight: 400;
  transition: transform 250ms var(--vefa-ease);
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list p {
  max-width: 700px;
  margin: 15px 45px 0 0;
  color: var(--vefa-text-muted);
  font-size: 15px;
}

.final-cta {
  position: relative;
  width: min(1200px, calc(100% - 48px));
  min-height: 455px;
  margin: 0 auto 24px;
  padding: 70px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--vefa-gradient-cta);
  color: #fff;
}

.final-cta h2 {
  max-width: 720px;
  color: #fff;
}

.final-cta-copy > p {
  margin: 21px 0 29px;
  color: #dbeafe;
  font-size: 17px;
}

.final-cta-copy > div {
  display: flex;
  align-items: center;
  gap: 26px;
}

.cta-secondary {
  color: #fff;
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 750;
}

.cta-secondary span {
  color: #fed7aa;
}

.final-cta-art {
  position: relative;
  min-height: 300px;
}

.door {
  position: absolute;
  bottom: 35px;
  width: 105px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-bottom: 0;
  background: rgba(255, 255, 255, .08);
}

.door span {
  position: absolute;
  width: 7px;
  height: 7px;
  right: 13px;
  top: 50%;
  border-radius: 50%;
  background: var(--vefa-accent);
}

.door-one {
  height: 210px;
  left: 18px;
}

.door-two {
  height: 250px;
  left: 138px;
}

.door-three {
  height: 180px;
  left: 258px;
}

.connection-line {
  position: absolute;
  width: 280px;
  height: 130px;
  left: 55px;
  top: 50px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  transform: rotate(-8deg);
}

footer {
  padding: 75px max(24px, calc((100vw - 1200px) / 2)) 28px;
  background: var(--vefa-bg-soft);
  border-top: 1px solid var(--vefa-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.footer-brand p {
  max-width: 330px;
  margin: 22px 0 0;
  color: var(--vefa-text-muted);
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  font-family: var(--ui);
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links strong {
  margin-bottom: 7px;
  color: var(--vefa-text);
  font-size: 11px;
}

.footer-links a {
  color: var(--vefa-text-muted);
  font-size: 10px;
}

.footer-links a:hover {
  color: var(--vefa-accent);
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--vefa-border);
  color: var(--vefa-text-subtle);
  font-family: var(--ui);
  font-size: 9px;
}

.footer-bottom > div {
  display: flex;
  gap: 22px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: .95fr 1.05fr;
    gap: 35px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .product-stage {
    transform: scale(.92);
  }

  .warning-section {
    grid-template-columns: 1fr .7fr;
  }

  .promoter-section {
    gap: 55px;
  }
}

@media (max-width: 860px) {
  .site-header,
  .hero-inner,
  .promise-strip,
  .section,
  .warning-section,
  .promoter-section,
  .final-cta {
    width: min(100% - 36px, 680px);
  }

  .hero-inner,
  .problem-section,
  .warning-section,
  .section-head,
  .how-section,
  .promoter-section,
  .faq-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 60px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(55px, 12vw, 75px);
  }

  .product-stage {
    max-width: 620px;
    margin: 0 auto;
    transform: none;
  }

  .promise-strip {
    grid-template-columns: 1fr;
    padding: 24px 0;
  }

  .promise-strip > div,
  .promise-strip > div:first-child,
  .promise-strip > div:last-child {
    min-height: 72px;
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid var(--vefa-border);
  }

  .promise-strip > div:last-child {
    border-bottom: 0;
  }

  .problem-section {
    gap: 28px;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .pain-card,
  .pain-card:first-child,
  .pain-card:last-child {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--vefa-border);
  }

  .pain-card > span {
    margin-bottom: 24px;
  }

  .warning-section {
    margin-bottom: 90px;
  }

  .warning-card,
  .warning-section aside {
    padding: 48px;
  }

  .section-head {
    align-items: start;
    gap: 28px;
  }

  .uses-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .use-card {
    min-height: 470px;
  }

  .how-section {
    gap: 60px;
    padding-inline: max(24px, calc((100vw - 680px) / 2));
  }

  .section-head-resources .editorial-link {
    justify-self: start;
  }

  .promoter-section {
    padding: 55px;
  }

  .promoter-visual {
    order: 2;
  }

  .faq-section {
    gap: 55px;
  }

  .final-cta {
    padding: 55px;
  }

  .final-cta-art {
    min-height: 260px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 17px;
  }

  .utility-bar {
    justify-content: space-between;
    gap: 12px;
  }

  .utility-bar p {
    display: none;
  }

  .site-header {
    min-height: 72px;
  }

  .brand-word {
    font-size: 20px;
  }

  .login-link {
    display: none;
  }

  .ui-button-small {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 10px;
  }

  .hero-inner {
    padding: 48px 0 70px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 65px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .program-search {
    padding: 13px;
  }

  .program-search label {
    margin-left: 0;
  }

  .program-search > div {
    grid-template-columns: auto 1fr;
  }

  .program-search button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero-notes {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .product-stage {
    min-height: 510px;
  }

  .community-card {
    width: 94%;
    padding: 17px;
  }

  .phase-badge {
    display: none;
  }

  .progress-labels {
    font-size: 6px;
  }

  .floating-note {
    padding: 10px;
  }

  .note-photo {
    left: -4%;
    top: 5%;
  }

  .note-neighbor {
    right: -4%;
    bottom: 0;
  }

  .section {
    padding: 88px 0;
  }

  .problem-heading h2,
  .section-head h2,
  .warning-card h2,
  .how-copy h2,
  .promoter-copy h2,
  .faq-heading h2,
  .final-cta h2 {
    font-size: 41px;
  }

  .warning-card,
  .warning-section aside {
    padding: 38px 24px;
  }

  .warning-marker {
    position: static;
    margin-bottom: 22px;
  }

  .use-card {
    min-height: 510px;
  }

  .how-section {
    padding-block: 85px;
  }

  .steps li {
    min-height: 155px;
  }

  .promoter-section {
    padding: 42px 24px;
  }

  .promoter-visual {
    min-height: 390px;
  }

  .kpi-blue {
    left: 16px;
  }

  .kpi-green {
    right: 16px;
    top: 140px;
  }

  .kpi-gold {
    left: 35px;
    bottom: 30px;
  }

  .final-cta {
    padding: 48px 24px;
  }

  .final-cta-copy > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta-art {
    min-height: 240px;
    transform: scale(.85);
    transform-origin: left center;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
