/* ============================================================
   FINANCIAL VITALS CHECK — cinematic funnel page.
   Palette + type locked to the homepage. Type runs a notch
   larger than a typical form because the audience is 45+ and
   often reading on a phone.
   ============================================================ */
#fvcpage {
  --void: #072523;
  --deep: #0B3A38;
  --panel: #0E4C49;
  --inset: #061F1D;
  --teal: #3E9E94;
  --teal-bright: #57BBB0;
  --teal-tint: rgba(62, 158, 148, 0.16);
  --gold: #C6A052;
  --gold-deep: #AE893B;
  --gold-tint: rgba(198, 160, 82, 0.13);
  --cream: #F6F4EE;
  --soft: #D7DED5;
  --muted: #9DB0AB;
  --line: rgba(246, 244, 238, 0.12);
  --line2: rgba(246, 244, 238, 0.22);
  --err: #E8A0A0;

  position: relative;
  min-height: 100vh;
  background: var(--void);
  color: var(--cream);
  font-family: "Mulish", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}
#fvcpage, #fvcpage *, #fvcpage *::before, #fvcpage *::after { box-sizing: border-box; }
#fvcpage :is(p, h1, h2, h3, h4, ul, ol, li, form, label, figure, blockquote, dl, dd) { margin: 0; padding: 0; list-style: none; }

#fvcpage .fvc-playfair, #fvcpage h1, #fvcpage h2, #fvcpage h3 { font-family: "Playfair Display", serif; }
#fvcpage .amp, #fvcpage .cormorant { font-family: "Cormorant Garamond", serif; font-style: italic; }

/* atmosphere: the same void glow + film grain as the homepage */
#fvcpage .fvc-glow {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(70% 50% at 50% 0%, rgba(14, 76, 73, 0.55) 0%, transparent 70%),
    radial-gradient(60% 45% at 50% 100%, rgba(11, 58, 56, 0.5) 0%, transparent 72%);
}
#fvcpage .fvc-grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 90;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: fvcGrain 0.9s steps(2) infinite;
}
@keyframes fvcGrain { 50% { transform: translate(1.4%, -1%); } }

/* ============ chrome ============ */
#fvcpage .fvc-top {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px clamp(20px, 4vw, 54px);
}
#fvcpage .fvc-wordmark {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
}
#fvcpage .fvc-wordmark .amp { color: var(--gold); font-weight: 600; }
#fvcpage .fvc-topnav {
  display: flex;
  gap: clamp(16px, 2.4vw, 32px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
#fvcpage .fvc-topnav a {
  color: rgba(246, 244, 238, 0.72);
  text-decoration: none;
  transition: color 0.25s;
}
#fvcpage .fvc-topnav a:hover { color: var(--gold); }
#fvcpage .fvc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
#fvcpage .fvc-eyebrow .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: fvcBeat 2.4s ease-in-out infinite;
}
@keyframes fvcBeat {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  12% { opacity: 1; transform: scale(1.5); }
  24% { opacity: 0.5; transform: scale(1); }
}

/* ============ stage + card ============ */
#fvcpage .fvc-stage {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(10px, 3vh, 34px) clamp(16px, 4vw, 24px) clamp(40px, 7vh, 70px);
}
#fvcpage .fvc-card {
  position: relative;
  min-height: 470px;
  background: linear-gradient(170deg, rgba(14, 76, 73, 0.62), rgba(7, 37, 35, 0.9));
  border: 1px solid var(--line2);
  border-radius: 20px;
  padding: clamp(22px, 4vw, 38px) clamp(20px, 4vw, 40px) clamp(28px, 4vw, 40px);
  box-shadow: 0 50px 110px -55px rgba(0, 0, 0, 0.95), 0 0 60px -30px rgba(198, 160, 82, 0.18);
  backdrop-filter: blur(3px);
}

/* EKG progress thread — fills gold, pulse head rides the front */
#fvcpage .fvc-progress { position: relative; height: 40px; margin-bottom: 2px; }
#fvcpage .fvc-ekg { display: block; width: 100%; height: 40px; overflow: visible; }
#fvcpage .fvc-ekg path { fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
#fvcpage .fvc-ekg .rail { stroke: rgba(246, 244, 238, 0.13); }
#fvcpage .fvc-ekg .live {
  stroke: var(--gold);
  filter: drop-shadow(0 0 6px rgba(198, 160, 82, 0.55));
  transition: stroke-dashoffset 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
#fvcpage .fvc-head {
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px; height: 9px;
  margin: -4.5px 0 0 -4.5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px 3px rgba(198, 160, 82, 0.6);
  transition: left 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}
#fvcpage .fvc-head.on { opacity: 1; }
#fvcpage .fvc-count {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  min-height: 17px;
  margin-bottom: 6px;
}

/* panes fade+lift on every step change */
#fvcpage .fvc-pane { animation: fvcIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes fvcIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* ============ intro ============ */
#fvcpage .fvc-kicker {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--gold);
  margin-bottom: 6px;
}
#fvcpage .fvc-pane h1 {
  text-wrap: balance;
  font-size: clamp(29px, 4.6vw, 42px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--cream);
}
#fvcpage .fvc-pane h1 .cormorant { color: var(--gold); }
#fvcpage .fvc-sub {
  font-size: clamp(16px, 1.9vw, 18px);
  color: var(--soft);
  margin-top: 14px;
}
#fvcpage .fvc-list { list-style: none; margin-top: 22px; display: grid; gap: 13px; }
#fvcpage .fvc-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--soft);
  padding-top: 13px;
  border-top: 1px solid var(--line);
}
#fvcpage .fvc-list li:first-child { border-top: none; padding-top: 0; }
#fvcpage .fvc-list .tick {
  flex: 0 0 auto;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: var(--teal-tint);
  border: 1px solid rgba(62, 158, 148, 0.5);
  color: var(--teal-bright);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
#fvcpage .fvc-meta { font-size: 14px; color: var(--muted); margin-top: 14px; }

/* ============ questions ============ */
#fvcpage .fvc-q {
  font-family: "Playfair Display", serif;
  font-size: clamp(23px, 3.2vw, 31px);
  font-weight: 600;
  line-height: 1.22;
  color: var(--cream);
  margin: 4px 0 22px;
}
#fvcpage .fvc-qnote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--muted);
  margin: -14px 0 20px;
}
#fvcpage .fvc-opts { display: grid; gap: 11px; }
#fvcpage .fvc-opt {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(6, 31, 29, 0.55);
  border: 1.5px solid var(--line);
  border-radius: 13px;
  padding: 17px 19px;
  font-family: "Mulish", sans-serif;
  font-size: 16.5px;
  line-height: 1.4;
  color: var(--cream);
  cursor: pointer;
  transition: border-color 0.16s, background 0.16s, transform 0.16s;
}
#fvcpage .fvc-opt:hover { border-color: var(--teal); background: var(--teal-tint); transform: translateX(3px); }
#fvcpage .fvc-opt:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
#fvcpage .fvc-opt .pip {
  flex: 0 0 auto;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--muted);
  transition: border-color 0.16s, background 0.16s, box-shadow 0.16s;
}
#fvcpage .fvc-opt.sel { border-color: var(--gold); background: var(--gold-tint); }
#fvcpage .fvc-opt.sel .pip {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: inset 0 0 0 3.5px #0B3A38;
}
#fvcpage .fvc-back {
  margin-top: 20px;
  background: none;
  border: none;
  color: var(--muted);
  font-family: "Mulish", sans-serif;
  font-size: 14.5px;
  cursor: pointer;
  padding: 6px 0;
  transition: color 0.2s;
}
#fvcpage .fvc-back:hover { color: var(--cream); }

/* ============ contact step ============ */
#fvcpage .fvc-csub { font-size: 16px; color: var(--soft); margin: -12px 0 20px; }
#fvcpage .fvc-fl {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 15px;
}
#fvcpage .fvc-fl .opt-tag { font-weight: 400; text-transform: none; letter-spacing: 0.02em; font-size: 12.5px; }
#fvcpage .fvc-fi {
  display: block;
  width: 100%;
  margin-top: 8px;
  background: var(--inset);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 15px 16px;
  font-family: "Mulish", sans-serif;
  font-size: 16.5px;
  color: var(--cream);
  transition: border-color 0.16s, box-shadow 0.16s;
}
#fvcpage .fvc-fi:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 160, 82, 0.16);
}
#fvcpage .fvc-fi::placeholder { color: rgba(157, 176, 171, 0.7); }
#fvcpage .fvc-fi.bad { border-color: var(--err); }
#fvcpage .fvc-ferr { min-height: 20px; font-size: 14px; color: var(--err); margin: 2px 0 10px; }
#fvcpage .fvc-privacy {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
}
#fvcpage .fvc-privacy svg { flex: 0 0 auto; margin-top: 2px; }

/* ============ buttons ============ */
#fvcpage .fvc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  background: var(--gold);
  color: var(--void);
  text-decoration: none;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  padding: 17px 26px;
  border: none;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 14px 34px -18px rgba(198, 160, 82, 0.9);
}
#fvcpage .fvc-btn:hover { background: var(--gold-deep); transform: translateY(-1px); }
#fvcpage .fvc-btn[disabled] { opacity: 0.6; cursor: default; transform: none; }
#fvcpage .fvc-btn.soft { width: auto; border-radius: 999px; padding: 16px 34px; }
#fvcpage .fvc-ghost {
  background: none;
  border: none;
  color: var(--muted);
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  padding: 12px;
  margin-top: 10px;
  cursor: pointer;
  transition: color 0.2s;
}
#fvcpage .fvc-ghost:hover { color: var(--cream); }
#fvcpage .fvc-cta { margin-top: 20px; }
#fvcpage .fvc-cta .sub { font-size: 13.5px; color: var(--muted); margin-top: 11px; text-align: center; }

/* ============ result: the reading reads like a paper chart ============ */
#fvcpage .fvc-greet {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
#fvcpage .fvc-vcard {
  background: linear-gradient(165deg, #F6F4EE, #EAE6DA);
  border-radius: 16px;
  padding: 22px 24px 24px;
  text-align: center;
  margin-bottom: 24px;
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.9), 0 0 50px -26px rgba(198, 160, 82, 0.4);
}
#fvcpage .fvc-vcard .rule {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7C8A85;
}
#fvcpage .fvc-ekglive { width: 100%; height: 46px; display: block; margin: 8px 0 4px; overflow: visible; }
#fvcpage .fvc-ekglive path { fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
#fvcpage .fvc-ekglive .base { stroke: rgba(62, 158, 148, 0.3); }
#fvcpage .fvc-ekglive .blip {
  stroke: #16615D;
  stroke-dasharray: 26 1000;
  animation: fvcSweep 2.6s linear infinite;
}
@keyframes fvcSweep { from { stroke-dashoffset: 1000; } to { stroke-dashoffset: 0; } }
#fvcpage .fvc-pulse {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #16615D;
}
#fvcpage .fvc-level {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 600;
  color: #0B3A38;
  line-height: 1.15;
  margin-top: 4px;
}
#fvcpage .fvc-result h2 {
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 600;
  line-height: 1.18;
  color: var(--cream);
}
#fvcpage .fvc-rbody { font-size: 16.5px; color: var(--soft); margin-top: 14px; }
#fvcpage .fvc-rbody p + p { margin-top: 12px; }
#fvcpage .fvc-note {
  margin-top: 20px;
  background: var(--gold-tint);
  border: 1px solid rgba(198, 160, 82, 0.3);
  border-left: 3px solid var(--gold);
  border-radius: 0 13px 13px 0;
  padding: 16px 19px;
}
#fvcpage .fvc-note h4 {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 7px;
}
#fvcpage .fvc-note p { font-size: 15px; color: var(--soft); }

/* ============ page footer ============ */
#fvcpage .fvc-disc {
  margin-top: 26px;
  font-size: 12px;
  line-height: 1.65;
  color: rgba(157, 176, 171, 0.85);
  text-align: center;
  padding: 0 6px;
}
#fvcpage .fvc-foot {
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--line);
  padding: 28px clamp(20px, 4vw, 54px) 38px;
  text-align: center;
}
#fvcpage .fvc-footlinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
#fvcpage .fvc-footlinks a { color: rgba(246, 244, 238, 0.68); text-decoration: none; transition: color 0.22s; }
#fvcpage .fvc-footlinks a:hover { color: var(--gold); }
#fvcpage .fvc-foottag {
  max-width: 640px;
  margin: 18px auto 0;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(246, 244, 238, 0.4);
}

@media (max-width: 560px) {
  #fvcpage { font-size: 16px; }
  #fvcpage .fvc-card { border-radius: 16px; padding: 20px 18px 26px; }
  #fvcpage .fvc-opt { padding: 16px 16px; font-size: 16px; }
  #fvcpage .fvc-top { padding: 18px 18px; }
  #fvcpage .fvc-topnav {
  display: flex;
  gap: clamp(16px, 2.4vw, 32px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
#fvcpage .fvc-topnav a {
  color: rgba(246, 244, 238, 0.72);
  text-decoration: none;
  transition: color 0.25s;
}
#fvcpage .fvc-topnav a:hover { color: var(--gold); }
#fvcpage .fvc-eyebrow { font-size: 9.5px; letter-spacing: 0.16em; }
}

@media (prefers-reduced-motion: reduce) {
  #fvcpage *, #fvcpage *::before, #fvcpage *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  #fvcpage .fvc-grain { display: none; }
}
