/* Visa Current — editorial workspace. Motion is a single product arrival, never ambient. */
.vc {
  --bg: #f7f6f0;
  --card: #fffefa;
  --ink: #193d37;
  --sub: #626e65;
  --border: #dcded3;
  --rust: #a74028;
  --pale: #e9ede2;
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}
.vc .container {
  width: min(1280px, calc(100% - 96px));
  margin: auto;
}
.vc h1,
.vc h2,
.vc h3,
.vc p {
  margin-top: 0;
}
.vc h1,
.vc h2 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 400;
}
.vc h1 {
  font-size: clamp(48px, 5.7vw, 84px);
  line-height: 1.04;
  letter-spacing: -4px;
}
.vc h2 {
  font-size: clamp(32px, 3.45vw, 50px);
  line-height: 1.14;
  letter-spacing: -1.8px;
}
.vc h3 {
  font-family: "DM Sans", sans-serif;
  letter-spacing: -0.5px;
  line-height: 1.3;
}
.vc em {
  color: var(--rust);
  font-style: normal;
}
.vc .icon {
  width: 20px;
  height: 20px;
  flex: none;
  vertical-align: middle;
}
.vc a {
  color: inherit;
}
.vc button,
.vc input,
.vc select {
  font: inherit;
}
.vc button,
.vc a,
.vc summary {
  -webkit-tap-highlight-color: transparent;
}
.vc button {
  cursor: pointer;
}
.vc :is(a, button, input, select, summary):focus-visible {
  outline: 3px solid #ad492e;
  outline-offset: 4px;
}
.vc button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.vc .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 20px;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  background: var(--card);
  color: var(--ink);
  transition:
    background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.12s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 2px #173b3606;
}
.vc .btn:hover {
  background: #eceee4;
  box-shadow: 0 2px 5px #173b3610;
}
.vc .btn:active {
  transform: scale(0.985);
}
.vc .btn.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #fffdf3;
  box-shadow:
    inset 0 1px 0 #ffffff1c,
    0 2px 3px #122d3210,
    0 8px 20px #173b360b;
}
.vc .btn.primary:hover {
  background: #28554b;
}
.vc .btn.danger {
  color: #922e21;
  border-color: #d7a496;
}
.vc .small {
  padding: 9px 13px;
  min-height: 40px;
  font-size: 13px;
}
.vc .quiet-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}
.vc .quiet-link:hover {
  text-decoration: underline;
}
.vc .vc-brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 27px;
  letter-spacing: -1.4px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.vc .vc-brand > svg {
  width: 34px;
  height: 34px;
}
.vc .vc-brand > span > span {
  font-weight: 400;
}
.vc .vc-brand b {
  color: var(--rust);
}
.vc .kicker {
  font-size: 10px;
  letter-spacing: 1.6px;
  font-weight: 700;
  line-height: 1.7;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.vc .tiny-line {
  display: inline-block;
  height: 1px;
  width: 22px;
  background: var(--rust);
  vertical-align: middle;
  margin-right: 9px;
}
.vc .micro,
.vc .fineprint {
  font-size: 12px;
  color: var(--sub);
}
.vc .vc-header {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.vc-header nav {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 13px;
}
.vc-header nav a {
  text-decoration: none;
}
.vc-header .nav-workspace {
  display: flex;
  gap: 20px;
  align-items: center;
  border: 1px solid #b9c4b7;
  padding: 10px 15px;
  border-radius: 4px;
}
.vc .vc-hero {
  display: grid;
  grid-template-columns: 1.07fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 85px;
  padding-bottom: 86px;
}
.vc .hero-deck {
  font-size: 18px;
  line-height: 1.75;
  color: var(--sub);
  margin: 28px 0;
}
.vc .cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.vc .hero-editorial > .micro {
  margin-top: 16px;
}
.vc .hero-edition {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--sub);
  padding-top: 19px;
  margin-top: 45px;
  max-width: 500px;
}
.vc .hero-product {
  padding: 0 0 33px;
  position: relative;
  animation: product-arrival 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.vc .sample-window {
  border: 1px solid #d4d9ca;
  border-radius: 11px;
  overflow: hidden;
  background: var(--card);
  box-shadow:
    0 1px 3px #253c3210,
    0 18px 42px -16px #243e3220,
    0 35px 80px -45px #29372c45;
  transform: rotate(-2deg);
}
.vc .window-bar {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px 19px;
  border-bottom: 1px solid var(--border);
  font-size: 8px;
  letter-spacing: 1px;
  background: #f2f3e9;
}
.vc .window-dots {
  display: flex;
  gap: 4px;
}
.vc .window-dots i {
  height: 5px;
  width: 5px;
  border: 1px solid #99a597;
  border-radius: 50%;
}
.vc .sample-tag {
  margin-left: auto;
  background: #e6eada;
  padding: 3px 7px;
  border-radius: 3px;
  color: #4d604d;
  font-size: 8px;
  letter-spacing: 1px;
}
.vc .sample-inner {
  padding: 28px;
}
.vc .sample-heading {
  display: flex;
  justify-content: space-between;
}
.vc .sample-heading h2 {
  font-size: 27px;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.vc .sample-heading .kicker {
  font-size: 8px;
  margin-bottom: 8px;
}
.vc .sample-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e5dac3;
  display: grid;
  place-items: center;
  font-size: 12px;
}
.vc .sample-bulletin {
  background: var(--ink);
  border-radius: 6px;
  padding: 23px;
  color: #f8f5e9;
}
.vc .sample-bulletin .kicker {
  font-size: 8px;
  margin: 0;
  color: #c3d0b8;
}
.vc .between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.vc .sample-bulletin .icon {
  width: 15px;
}
.vc .sample-status {
  font-family: Fraunces, serif;
  font-size: 27px;
  line-height: 1.17;
  margin: 20px 0;
}
.vc .mini-dates {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  gap: 15px;
}
.vc .mini-dates span {
  display: block;
  color: #b8c8b6;
  font-size: 9px;
  margin-bottom: 5px;
}
.vc .sample-bulletin > p:last-child {
  font-size: 9px;
  letter-spacing: 0.4px;
  color: #c3d0b8;
  margin: 13px 0 0;
}
.vc .date-track {
  height: 2px;
  background: #58796c;
  position: relative;
  margin: 21px 3px;
}
.vc .date-track:before {
  content: "";
  position: absolute;
  left: 0;
  width: 38%;
  height: 2px;
  background: #e0c182;
  transform-origin: left;
  animation: line-arrival 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.vc .track-dot,
.vc .track-end {
  position: absolute;
  top: -3px;
  width: 8px;
  height: 8px;
  background: #e0c182;
  border-radius: 50%;
  left: 38%;
}
.vc .track-end {
  left: auto;
  right: 0;
  background: #e6edde;
}
.vc .sample-task {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 19px 0 0;
  font-size: 11px;
}
.vc .sample-task > .icon {
  padding: 5px;
  background: #ecf0e4;
  width: 29px;
  height: 29px;
  border-radius: 50%;
}
.vc .sample-task small {
  display: block;
  font-size: 7px;
  letter-spacing: 0.7px;
  color: var(--sub);
  margin-top: 3px;
}
.vc .sample-done {
  margin-left: auto;
  color: var(--sub);
  font-size: 10px;
}
.vc .source-stamp {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #e8d9bd;
  border: 1px solid #d7c6a8;
  border-radius: 5px;
  padding: 16px 23px;
  position: relative;
  width: max-content;
  max-width: 92%;
  margin: -9px -15px 0 auto;
  box-shadow: 0 3px 9px #173b3610;
  font-size: 11px;
  line-height: 1.6;
}
.vc .source-stamp strong {
  font-weight: 500;
}
.vc .principle-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #eef0e5;
}
.vc .principle-strip > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-block: 25px;
  font-size: 12px;
}
.vc .principle-strip span:first-child {
  font-size: 9px;
  letter-spacing: 1.3px;
  max-width: 180px;
}
.vc .checker-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  padding-block: 100px;
}
.vc .checker-intro > p:not(.kicker) {
  color: var(--sub);
  max-width: 360px;
}
.vc .source-note {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  gap: 15px;
  margin-top: 33px;
  font-size: 12px;
}
.vc .source-note small {
  display: block;
  color: var(--sub);
  font-size: 10px;
  margin-top: 8px;
}
.vc .source-note .icon {
  width: 17px;
}
.vc .checker-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 30px;
  box-shadow:
    0 2px 3px #173b3604,
    0 13px 35px -20px #173b3620;
}
.vc .field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
  min-width: 0;
}
.vc label,
.vc legend {
  font-weight: 600;
  font-size: 13px;
}
.vc input:not([type="checkbox"]),
.vc select {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 11px 12px;
  background: #fffef9;
  border: 1px solid #b5c1b2;
  border-radius: 4px;
  color: var(--ink);
  font-size: 14px;
}
.vc input:disabled {
  background: #ebece5;
  color: #6a7268;
}
.vc input::placeholder {
  color: #778176;
}
.vc .help {
  font-size: 11px;
  color: var(--sub);
  line-height: 1.6;
  margin: 0;
}
.vc .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
}
.vc .form-grid > .full {
  grid-column: 1/-1;
}
.vc .check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  cursor: pointer;
}
.vc input[type="checkbox"] {
  accent-color: var(--ink);
  width: 18px;
  height: 18px;
  flex: none;
  margin: 1px 0 0;
}
.vc .field-error,
.vc .error-box {
  color: #8e2e20;
  background: #fbede5;
  border: 1px solid #dcad9a;
  border-radius: 4px;
  padding: 12px;
  font-size: 13px;
  margin-bottom: 16px;
}
.vc .result-box {
  margin-top: 24px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
  scroll-margin-top: 30px;
}
.vc .result-box h3 {
  font-size: 21px;
  margin: 12px 0;
}
.vc .result-box > p {
  font-size: 13px;
  color: var(--sub);
}
.vc .result-box .btn {
  margin-top: 14px;
}
.vc .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  background: #e8edde;
  border: 1px solid #ced7c0;
  padding: 5px 9px;
  border-radius: 30px;
}
.vc .status-pill.waiting,
.vc .status-pill.stale,
.vc .status-pill.unknown {
  background: #f4e8d3;
  border-color: #e6ceb1;
  color: #86501f;
}
.vc .status-pill.unavailable {
  background: #f4ded4;
  border-color: #dfb2a0;
  color: #8b3121;
}
.vc .status-pill.unsupported {
  background: #ecece6;
  color: #626a60;
}
.vc .method-section {
  background: #e9eddf;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 85px;
}
.vc .section-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
  margin-bottom: 45px;
}
.vc .section-top > p {
  font-size: 14px;
  color: #51614f;
}
.vc .method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.vc .method-number {
  font-family: Fraunces, serif;
  font-size: 36px;
  color: #73836a;
  display: block;
  margin-bottom: 24px;
}
.vc .method-grid h3 {
  font-size: 19px;
}
.vc .method-grid p {
  font-size: 14px;
  color: #53634f;
}
.vc .method-rule {
  display: block;
  height: 1px;
  background: #b7c4a8;
  margin-top: 25px;
}
.vc .honesty-section {
  display: grid;
  grid-template-columns: 65px 1fr 0.8fr;
  gap: 30px;
  padding-block: 95px;
  border-bottom: 1px solid var(--border);
}
.vc .honesty-mark .icon {
  width: 48px;
  height: 48px;
}
.vc .honesty-section h2 {
  font-size: 40px;
}
.vc .honesty-section p:not(.kicker) {
  color: var(--sub);
  max-width: 440px;
  font-size: 14px;
}
.vc .honesty-list {
  padding-left: 35px;
  border-left: 1px solid var(--border);
}
.vc .honesty-list > div + div {
  margin-top: 28px;
}
.vc .honesty-list strong {
  font-size: 13px;
}
.vc .honesty-list p {
  margin: 10px 0 0;
  line-height: 1.9;
}
.vc .vc-faq {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  padding-block: 80px;
}
.vc .vc-faq details {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.vc .vc-faq summary {
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  list-style: revert;
}
.vc .vc-faq details p {
  color: var(--sub);
  font-size: 14px;
  margin: 16px 0 5px;
}
.vc .final-cta {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-block: 75px;
}
.vc .final-cta h2 {
  font-size: 57px;
  margin-bottom: 27px;
}
.vc .final-cta .micro {
  margin-top: 18px;
}
.vc .vc-footer {
  padding-top: 35px;
  padding-bottom: 24px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.vc .vc-footer p {
  font-size: 12px;
  color: var(--sub);
  margin: 15px 0 0;
}
.vc .vc-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  font-size: 13px;
}
.vc .vc-footer .fineprint {
  grid-column: 1/-1;
  font-size: 10px;
  margin: 0;
  max-width: 850px;
}
.vc .toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 32px);
  background: var(--ink);
  color: white;
  padding: 13px 22px;
  border-radius: 5px;
  z-index: 20;
  box-shadow: 0 8px 30px #173b3633;
  font-size: 13px;
}
.vc [hidden] {
  display: none !important;
}
/* Setup */
.vc .onboarding-layout {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 100vh;
}
.vc .setup-aside {
  background: var(--ink);
  color: #f4f2e5;
  padding: 42px 12%;
  display: flex;
  flex-direction: column;
  gap: 55px;
}
.vc .setup-aside .vc-brand b {
  color: #dcb68b;
}
.vc .setup-aside h1 {
  font-size: clamp(42px, 4.5vw, 66px);
  letter-spacing: -2.8px;
}
.vc .setup-aside em {
  color: #d6bc8b;
}
.vc .setup-aside .kicker {
  color: #a7bba5;
}
.vc .setup-aside p:not(.kicker) {
  color: #bfccba;
  font-size: 14px;
}
.vc .setup-progress {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vc .setup-progress li {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #a7b8a3;
  border-top: 1px solid #416052;
  padding: 15px 0;
  font-size: 12px;
}
.vc .setup-progress span {
  font-size: 10px;
  letter-spacing: 1px;
}
.vc .setup-progress .active {
  color: #f8efd5;
}
.vc .setup-progress .active span {
  color: #efc789;
}
.vc .setup-aside .setup-disclaimer {
  font-size: 10px;
  margin-top: auto;
}
.vc .setup-main {
  padding: 45px 12%;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.vc #onboarding-app {
  margin: auto 0;
  padding-block: 55px;
}
.vc .setup-main h2 {
  font-size: 38px;
}
.vc .setup-main .subtitle {
  color: var(--sub);
  font-size: 14px;
  margin-bottom: 30px;
}
.vc .step-top {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--sub);
  margin-bottom: 24px;
}
.vc .step-meter {
  display: flex;
  gap: 4px;
  align-items: center;
}
.vc .step-meter i {
  width: 25px;
  height: 3px;
  background: #d7ddcf;
}
.vc .step-meter i.active {
  background: var(--ink);
}
.vc .form-actions {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  margin-top: 28px;
}
.vc .setup-bottom {
  font-size: 10px;
  color: var(--sub);
  display: flex;
  align-items: center;
  gap: 8px;
}
.vc .setup-bottom .icon {
  width: 15px;
}
.vc .review-list {
  margin: 25px 0;
  border-top: 1px solid var(--border);
}
.vc .review-list > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  font-size: 13px;
}
.vc .review-list dt {
  color: var(--sub);
}
.vc .review-list dd {
  margin: 0;
  text-align: right;
  font-weight: 500;
}
.vc .notice {
  padding: 15px 18px;
  background: #eeeede;
  border: 1px solid #d8ddc8;
  border-radius: 5px;
  font-size: 12px;
  color: #51614c;
  margin-bottom: 20px;
}
.vc .notice a {
  text-underline-offset: 3px;
}
/* Personal workspace */
.vc .workspace-layout {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  min-height: 100vh;
}
.vc .sidebar {
  background: var(--ink);
  color: #e8eddf;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
}
.vc .sidebar .vc-brand {
  font-size: 24px;
  padding: 0 7px;
}
.vc .sidebar .vc-brand > svg {
  width: 29px;
}
.vc .sidebar .vc-brand b {
  color: #d8b886;
}
.vc .workspace-label {
  font-size: 9px;
  letter-spacing: 1.6px;
  color: #afc0a7;
  padding: 0 13px;
  margin: 47px 0 15px;
}
.vc .sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.vc .sidebar nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #becbb6;
  text-decoration: none;
  border-radius: 5px;
  padding: 12px 13px;
  min-height: 46px;
}
.vc .sidebar nav a:hover {
  background: #254b40;
  color: white;
}
.vc .sidebar nav a[aria-current="page"] {
  background: #365847;
  color: #fff6dd;
  box-shadow: inset 2px 0 0 #d3b67d;
}
.vc .sidebar-foot {
  margin-top: auto;
  border-top: 1px solid #3c5848;
  padding: 20px 10px 0;
  font-size: 10px;
  color: #adbea4;
}
.vc .sidebar-foot p {
  margin: 12px 0 0;
}
.vc .sidebar-foot a {
  font-size: 12px;
  color: #e0e8d5;
}
.vc .workspace-main {
  min-width: 0;
}
.vc .workspace-topbar {
  height: 80px;
  padding: 0 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  background: #fbfaf4;
}
.vc .breadcrumb {
  font-size: 12px;
  color: var(--sub);
}
.vc .breadcrumb span {
  padding: 0 9px;
  color: #909b89;
}
.vc .topbar-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 10px;
  color: var(--sub);
}
.vc .profile-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e4d6b8;
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 600;
}
.vc .workspace-content {
  max-width: 1320px;
  margin: auto;
  padding: 37px 45px 45px;
}
.vc .preview-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 16px;
  background: #efe5cf;
  border: 1px solid #ded0ae;
  border-radius: 4px;
  font-size: 11px;
  margin-bottom: 30px;
  color: #655433;
}
.vc .preview-banner a {
  white-space: nowrap;
  font-weight: 600;
}
.vc .page-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.vc .page-heading h1 {
  font-size: 42px;
  letter-spacing: -1.7px;
  margin: 0 0 9px;
}
.vc .page-heading p {
  font-size: 13px;
  color: var(--sub);
  margin: 0;
}
.vc .page-heading .kicker {
  font-size: 9px;
  margin-bottom: 10px;
}
.vc .dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 1fr);
  gap: 23px;
}
.vc .panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 25px;
  box-shadow:
    0 1px 2px #173b3604,
    0 8px 23px -18px #173b3618;
  min-width: 0;
}
.vc .panel h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.25px;
  margin: 0;
}
.vc .panel .panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}
.vc .panel-head .kicker {
  font-size: 9px;
  margin: 0;
  color: var(--sub);
}
.vc .bulletin-panel {
  background: var(--ink);
  color: #f3f1e4;
  position: relative;
  overflow: hidden;
  padding: 28px 30px;
}
.vc .bulletin-panel .panel-head {
  margin-bottom: 24px;
}
.vc .bulletin-panel .kicker {
  color: #bdd0b2;
}
.vc .bulletin-panel h2 {
  font-family: Fraunces, serif;
  font-size: 32px;
  line-height: 1.13;
  font-weight: 400;
  letter-spacing: -0.7px;
  max-width: 370px;
  margin: 18px 0 22px;
}
.vc .bulletin-panel .status-pill {
  background: #455d3f;
  color: #f3dfb7;
  border-color: #657457;
  font-size: 9px;
}
.vc .bulletin-panel .status-pill.unavailable {
  background: #694f3f;
  border-color: #8b7960;
}
.vc .bulletin-panel .cutoff-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid #4a6757;
  padding-top: 20px;
}
.vc .cutoff-row small {
  font-size: 10px;
  color: #b8cbb0;
}
.vc .cutoff-row strong {
  display: block;
  font-size: 21px;
  font-family: Fraunces, serif;
  font-weight: 400;
  margin-top: 6px;
}
.vc .bulletin-panel .explanation {
  font-size: 11px;
  line-height: 1.7;
  color: #c1cfb8;
  margin: 22px 0 0;
  max-width: 490px;
}
.vc .bulletin-panel .source-link {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #4a6757;
  margin-top: 22px;
  padding-top: 14px;
  font-size: 10px;
  color: #d4dfc7;
}
.vc .journey-panel dl {
  margin: 0;
}
.vc .journey-panel dl > div {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.vc .journey-panel dl > div:first-child {
  padding-top: 0;
}
.vc .journey-panel dt {
  color: var(--sub);
  font-size: 10px;
  margin-bottom: 3px;
}
.vc .journey-panel dd {
  margin: 0;
  font-weight: 500;
}
.vc .journey-panel .quiet-link {
  font-size: 11px;
  margin-top: 17px;
}
.vc .tasks-panel {
  grid-column: 1/2;
}
.vc .tasks-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vc .task-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  min-width: 0;
}
.vc .task-row:last-child {
  border: 0;
}
.vc .task-toggle {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 1px solid #aebda3;
  background: transparent;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 2px;
  color: var(--ink);
}
.vc .task-toggle[aria-pressed="true"] {
  background: #e3eada;
  border-color: #aabb9b;
}
.vc .task-toggle .icon {
  width: 15px;
  height: 15px;
}
.vc .task-text {
  min-width: 0;
  flex: 1;
}
.vc .task-text strong {
  display: block;
  font-weight: 500;
  font-size: 12px;
  overflow-wrap: anywhere;
}
.vc .task-text small {
  font-size: 10px;
  color: var(--sub);
  display: block;
  margin-top: 4px;
}
.vc .task-row.completed strong {
  text-decoration: line-through;
  color: var(--sub);
}
.vc .icon-button {
  border: 0;
  background: transparent;
  padding: 10px;
  color: var(--sub);
  border-radius: 4px;
  min-height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.vc .icon-button:hover {
  background: #e9eddf;
}
.vc .icon-button .icon {
  width: 16px;
  height: 16px;
}
.vc .task-actions {
  display: flex;
}
.vc .empty-state {
  padding: 25px 0 10px;
}
.vc .empty-state h3 {
  font-size: 17px;
}
.vc .empty-state p {
  font-size: 12px;
  color: var(--sub);
  max-width: 470px;
}
.vc .empty-state .btn {
  margin: 5px 5px 5px 0;
}
.vc .reading-panel {
  background: #e9eddf;
}
.vc .reading-panel h3 {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 500;
  margin: 16px 0;
}
.vc .reading-panel p {
  font-size: 12px;
  color: #53634c;
}
.vc .reading-panel .kicker {
  font-size: 9px;
  color: #5e7254;
  margin: 0;
}
.vc .reading-panel .quiet-link {
  font-size: 11px;
}
.vc .workspace-footnote {
  font-size: 10px;
  color: var(--sub);
  margin: 26px 0 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.vc .workspace-footnote .icon {
  width: 15px;
  height: 15px;
}
.vc .wide-panel {
  max-width: 900px;
  margin-bottom: 23px;
}
.vc .wide-panel > p {
  font-size: 13px;
  color: var(--sub);
}
.vc .sources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.vc .source-card {
  display: block;
  text-decoration: none;
}
.vc .source-card .kicker {
  font-size: 9px;
  margin-bottom: 18px;
  color: var(--sub);
}
.vc .source-card h2 {
  font-family: Fraunces, serif;
  font-size: 25px;
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 400;
}
.vc .source-card p {
  color: var(--sub);
  font-size: 12px;
}
.vc .source-card .quiet-link {
  font-size: 11px;
}
.vc .source-card:hover {
  border-color: #9eaf90;
}
.vc .task-form {
  display: grid;
  grid-template-columns: 1.8fr 1fr auto;
  gap: 15px;
  align-items: end;
}
.vc .task-form .field {
  margin: 0;
}
.vc .task-toolbar {
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 15px;
  margin-bottom: 7px;
}
.vc .filter {
  border: 0;
  border-radius: 4px;
  padding: 9px 15px;
  font-size: 12px;
  background: transparent;
  color: var(--sub);
  min-height: 40px;
}
.vc .filter[aria-pressed="true"] {
  background: #e6ecdd;
  color: var(--ink);
  font-weight: 600;
}
.vc .settings-grid {
  max-width: 750px;
}
.vc .settings-grid .panel {
  margin-bottom: 22px;
}
.vc .settings-grid .panel > p {
  color: var(--sub);
  font-size: 12px;
}
.vc .settings-grid h2 {
  margin-bottom: 15px;
}
.vc .loading-workspace {
  padding-block: 90px;
}
.vc dialog {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 9px;
  max-width: 480px;
  width: calc(100% - 32px);
  padding: 28px;
  box-shadow: 0 20px 80px #173b3640;
  color: var(--ink);
}
.vc dialog::backdrop {
  background: #11281ecc;
}
.vc dialog h2 {
  font-size: 27px;
}
.vc dialog p {
  font-size: 13px;
  color: var(--sub);
}
.vc .count-label {
  font-size: 11px;
  color: var(--sub);
}
.vc .mobile-wordmark {
  display: none;
}
/* Contrast and narrow-screen arrival safeguards. */
.vc .reading-panel > .kicker {
  color: #3f5640;
}
@media (max-width: 540px) {
  .vc .preview-banner a {
    margin-top: 7px;
    display: inline-flex;
  }
  .vc .hero-product {
    animation: none;
  }
  .vc .sample-window {
    transform: none;
  }
}
@keyframes product-arrival {
  from {
    transform: translateX(24px);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
@keyframes line-arrival {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@media (min-width: 1600px) {
  .vc .vc-hero {
    padding-block: 110px;
  }
  .vc .workspace-content {
    padding-top: 45px;
  }
}
@media (max-width: 1100px) {
  .vc .container {
    width: calc(100% - 56px);
  }
  .vc .vc-hero {
    gap: 32px;
    padding-top: 60px;
  }
  .vc h1 {
    font-size: 66px;
  }
  .vc .hero-deck {
    font-size: 16px;
  }
  .vc .cta-row {
    gap: 18px;
  }
  .vc .checker-section {
    gap: 55px;
  }
  .vc .source-stamp {
    margin-right: 0;
  }
  .vc .workspace-layout {
    grid-template-columns: 205px minmax(0, 1fr);
  }
  .vc .sidebar {
    padding-inline: 14px;
  }
  .vc .workspace-content {
    padding: 30px 27px;
  }
  .vc .workspace-topbar {
    padding-inline: 27px;
  }
  .vc .dashboard-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 1fr);
    gap: 18px;
  }
  .vc .panel {
    padding: 21px;
  }
  .vc .bulletin-panel h2 {
    font-size: 29px;
  }
  .vc .onboarding-layout {
    grid-template-columns: 38% 62%;
  }
  .vc .setup-aside {
    padding: 35px 10%;
  }
  .vc .setup-main {
    padding: 35px 10%;
  }
  .vc .setup-aside h1 {
    font-size: 49px;
  }
  .vc .task-form {
    grid-template-columns: 1fr 1fr;
  }
  .vc .task-form .btn {
    grid-column: 1/-1;
    justify-self: start;
  }
  .vc .page-heading h1 {
    font-size: 37px;
  }
}
@media (max-width: 800px) {
  .vc .vc-header {
    height: 82px;
  }
  .vc-header nav {
    gap: 20px;
  }
  .vc-header nav > a:first-child {
    display: none;
  }
  .vc .vc-hero {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-block: 53px 45px;
  }
  .vc .hero-editorial {
    max-width: 610px;
  }
  .vc h1 {
    font-size: 73px;
  }
  .vc .hero-product {
    max-width: 510px;
    width: 100%;
    justify-self: center;
  }
  .vc .hero-edition {
    margin-top: 30px;
  }
  .vc .principle-strip > div {
    flex-wrap: wrap;
    gap: 13px 22px;
  }
  .vc .principle-strip span:first-child {
    max-width: none;
    width: 100%;
  }
  .vc .checker-section {
    grid-template-columns: 1fr;
    padding-block: 60px;
    gap: 25px;
  }
  .vc .checker-intro > p:not(.kicker) {
    max-width: 550px;
  }
  .vc .source-note {
    margin-top: 22px;
    padding-top: 18px;
  }
  .vc .section-top {
    display: block;
    margin-bottom: 30px;
  }
  .vc .method-section {
    padding-block: 60px;
  }
  .vc .method-grid {
    gap: 25px;
  }
  .vc .method-grid h3 {
    font-size: 17px;
  }
  .vc .method-grid p {
    font-size: 12px;
  }
  .vc .honesty-section {
    grid-template-columns: 45px 1fr;
    gap: 20px;
    padding-block: 60px;
  }
  .vc .honesty-list {
    grid-column: 2;
    padding-left: 0;
    border-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .vc .honesty-list > div + div {
    margin: 0;
  }
  .vc .vc-faq {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-block: 50px;
  }
  .vc .vc-footer {
    grid-template-columns: 1fr;
  }
  .vc .vc-footer nav {
    justify-content: flex-start;
  }
  .vc .onboarding-layout {
    grid-template-columns: 1fr;
  }
  .vc .setup-aside {
    padding: 24px 30px;
    gap: 20px;
  }
  .vc .setup-aside > div,
  .vc .setup-aside > .setup-disclaimer {
    display: none;
  }
  .vc .setup-progress {
    display: flex;
    gap: 18px;
  }
  .vc .setup-progress li {
    border: 0;
    padding: 0;
    gap: 7px;
    font-size: 10px;
  }
  .vc .setup-main {
    padding: 28px max(28px, 10%);
    min-height: 70vh;
  }
  .vc #onboarding-app {
    padding-block: 38px;
  }
  .vc .workspace-layout {
    display: block;
  }
  .vc .sidebar {
    height: auto;
    position: static;
    padding: 15px 22px 0;
  }
  .vc .sidebar > .vc-brand {
    font-size: 22px;
    padding: 0;
  }
  .vc .workspace-label,
  .vc .sidebar-foot {
    display: none;
  }
  .vc .sidebar nav {
    flex-direction: row;
    justify-content: space-between;
    gap: 2px;
    margin-top: 16px;
  }
  .vc .sidebar nav a {
    border-radius: 4px 4px 0 0;
    padding: 10px 13px;
    font-size: 11px;
    gap: 7px;
  }
  .vc .sidebar nav a .icon {
    width: 16px;
  }
  .vc .sidebar nav a[aria-current="page"] {
    box-shadow: inset 0 -2px 0 #d3b67d;
  }
  .vc .workspace-topbar {
    height: 60px;
    padding: 0 25px;
  }
  .vc .workspace-content {
    padding: 25px;
  }
  .vc .page-heading h1 {
    font-size: 36px;
  }
  .vc .dashboard-grid {
    grid-template-columns: 1.3fr 1fr;
  }
  .vc .panel {
    padding: 22px;
  }
  .vc .bulletin-panel .cutoff-row {
    gap: 12px;
  }
  .vc .cutoff-row strong {
    font-size: 18px;
  }
  .vc .bulletin-panel h2 {
    font-size: 27px;
  }
  .vc .topbar-meta > span:first-child {
    display: none;
  }
  .vc .tasks-panel {
    grid-column: 1/-1;
  }
  .vc .reading-panel {
    grid-column: 1/-1;
  }
  .vc .sources-grid {
    gap: 15px;
  }
}
@media (max-width: 540px) {
  .vc .container {
    width: calc(100% - 40px);
  }
  .vc .vc-brand {
    font-size: 23px;
    gap: 7px;
  }
  .vc .vc-brand > svg {
    width: 28px;
  }
  .vc .vc-header nav {
    gap: 0;
  }
  .vc .vc-header nav > a:not(.nav-workspace) {
    display: none;
  }
  .vc .vc-header .nav-workspace {
    padding: 9px 10px;
    font-size: 11px;
    gap: 9px;
  }
  .vc .vc-header .nav-workspace .icon {
    width: 15px;
  }
  .vc .vc-hero {
    padding-top: 41px;
    gap: 42px;
  }
  .vc h1 {
    font-size: 58px;
    letter-spacing: -3px;
  }
  .vc h2 {
    font-size: 36px;
    letter-spacing: -1.5px;
  }
  .vc .hero-deck {
    font-size: 16px;
  }
  .vc .kicker {
    font-size: 9px;
    letter-spacing: 1.2px;
  }
  .vc .cta-row {
    gap: 18px;
  }
  .vc .hero-edition {
    font-size: 8px;
  }
  .vc .sample-inner {
    padding: 22px;
  }
  .vc .sample-window {
    transform: rotate(-1deg);
  }
  .vc .sample-heading h2 {
    font-size: 25px;
  }
  .vc .sample-bulletin {
    padding: 20px;
  }
  .vc .sample-status {
    font-size: 26px;
  }
  .vc .source-stamp {
    font-size: 10px;
    padding: 14px 18px;
  }
  .vc .window-bar {
    font-size: 7px;
    gap: 11px;
    padding: 13px;
  }
  .vc .principle-strip > div {
    font-size: 10px;
    gap: 12px 18px;
    padding-block: 20px;
  }
  .vc .principle-strip span:last-child {
    display: none;
  }
  .vc .checker-box {
    padding: 23px 19px;
  }
  .vc .form-grid {
    grid-template-columns: 1fr;
  }
  .vc .method-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .vc .method-grid article {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 0 18px;
  }
  .vc .method-number {
    grid-row: 1/4;
    font-size: 30px;
  }
  .vc .method-grid h3 {
    font-size: 19px;
  }
  .vc .method-grid p {
    font-size: 14px;
  }
  .vc .method-rule {
    grid-column: 2;
    margin-top: 5px;
  }
  .vc .honesty-section {
    grid-template-columns: 1fr;
  }
  .vc .honesty-mark {
    display: none;
  }
  .vc .honesty-list {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .vc .honesty-section h2 {
    font-size: 35px;
  }
  .vc .final-cta h2 {
    font-size: 43px;
  }
  .vc .final-cta .kicker {
    font-size: 8px;
  }
  .vc .vc-footer {
    padding-top: 27px;
  }
  .vc .setup-aside {
    padding: 20px;
  }
  .vc .setup-progress {
    justify-content: space-between;
    gap: 10px;
  }
  .vc .setup-progress li {
    font-size: 9px;
    gap: 5px;
    display: block;
  }
  .vc .setup-progress span {
    display: block;
    margin-bottom: 3px;
  }
  .vc .setup-main {
    padding: 25px 24px;
  }
  .vc .setup-main h2 {
    font-size: 33px;
  }
  .vc .setup-bottom {
    flex-wrap: wrap;
  }
  .vc .setup-main .form-grid {
    grid-template-columns: 1fr;
  }
  .vc .sidebar {
    padding: 17px 14px 0;
  }
  .vc .sidebar nav a {
    flex-direction: column;
    font-size: 9px;
    gap: 6px;
    padding: 11px 9px;
    min-width: 48px;
    flex: 1;
  }
  .vc .sidebar nav a .icon {
    width: 18px;
    height: 18px;
  }
  .vc .workspace-topbar {
    padding: 0 20px;
    height: 55px;
  }
  .vc .breadcrumb {
    font-size: 11px;
  }
  .vc .workspace-content {
    padding: 22px 18px 35px;
  }
  .vc .preview-banner {
    display: block;
    padding: 12px 14px;
    margin-bottom: 24px;
    font-size: 10px;
  }
  .vc .preview-banner a {
    display: inline-block;
    margin-top: 7px;
  }
  .vc .page-heading {
    align-items: flex-start;
    gap: 10px;
  }
  .vc .page-heading h1 {
    font-size: 33px;
  }
  .vc .page-heading p {
    font-size: 12px;
    max-width: 250px;
  }
  .vc .page-heading > .btn {
    font-size: 0;
    gap: 0;
    padding: 11px;
    min-height: 42px;
  }
  .vc .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .vc .panel {
    padding: 23px;
  }
  .vc .bulletin-panel {
    padding: 26px;
  }
  .vc .bulletin-panel h2 {
    font-size: 31px;
  }
  .vc .cutoff-row strong {
    font-size: 21px;
  }
  .vc .journey-panel dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
  .vc .journey-panel dl > div:first-child {
    padding-top: 14px;
  }
  .vc .tasks-panel,
  .vc .reading-panel {
    grid-column: auto;
  }
  .vc .task-row {
    gap: 9px;
  }
  .vc .task-actions {
    flex-direction: column;
  }
  .vc .task-text strong {
    font-size: 12px;
  }
  .vc .sources-grid {
    grid-template-columns: 1fr;
  }
  .vc .task-form {
    grid-template-columns: 1fr;
  }
  .vc .task-toolbar {
    gap: 0;
  }
  .vc .filter {
    padding: 9px 12px;
  }
  .vc .review-list > div {
    font-size: 12px;
  }
  .vc .source-link {
    gap: 12px;
  }
  .vc .workspace-footnote {
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .vc {
    scroll-behavior: auto;
  }
  .vc *,
  .vc *:before,
  .vc *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
