:root {
  --ink: #0E1C33;
  --ink-2: #16294A;
  --ink-soft: #47546B;
  --paper: #EEF1F5;
  --paper-2: #F7F9FB;
  --white: #FFFFFF;
  --brass: #B4894A;
  --brass-soft: #D6B47C;
  --emerald: #0F6B5C;
  --rule: rgba(14, 28, 51, .14);
  --rule-light: rgba(255, 255, 255, .16);

  --font-display: "Spectral", Georgia, "Times New Roman", serif;
  --font-ui: "Manrope", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --step-1: clamp(.82rem, .78rem + .2vw, .9rem);
  --step-0: clamp(1rem, .96rem + .2vw, 1.06rem);
  --step-2: clamp(1.35rem, 1.2rem + .6vw, 1.6rem);
  --step-3: clamp(1.85rem, 1.5rem + 1.6vw, 2.75rem);
  --step-4: clamp(2.4rem, 1.7rem + 3.2vw, 4.2rem);

  --gap: clamp(3.5rem, 2rem + 5vw, 6.5rem);
  --radius: 4px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}


html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: var(--font-ui);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.brand-word {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.14;
}

p {
  max-width: 62ch;
}

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

.skip {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: .6rem 1rem;
  border-radius: var(--radius);
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}


.btn {
  --bs-btn-border-radius: var(--radius);
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: .01em;
  padding: .72rem 1.6rem;
  border-radius: var(--radius);
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.btn-lg {
  padding: .92rem 2rem;
  font-size: 1rem;
}

.btn-brass {
  background: var(--brass);
  border: 1px solid var(--brass);
  color: #fff;
}

.btn-brass:hover,
.btn-brass:focus-visible {
  background: #9d7539;
  border-color: #9d7539;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--ink);
  background: rgba(14, 28, 51, .04);
  color: var(--ink);
}

.section-ink .btn-outline-light {
  border-color: var(--rule-light);
  color: #fff;
  border-radius: var(--radius);
}

.section-ink .btn-outline-light:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.site-header.is-stuck {
  border-bottom-color: var(--rule);
  box-shadow: 0 10px 30px -22px rgba(14, 28, 51, .5);
}

.navbar-brand {
  padding: 1.1rem 0;
}

.brand-word {
  font-size: 1.32rem;
  letter-spacing: .04em;
}

.navbar .nav-link {
  font-size: var(--step-1);
  font-weight: 500;
  color: var(--ink-soft);
  padding: .5rem .95rem;
  position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus-visible {
  color: var(--ink);
}

.navbar-toggler {
  font-size: 1.6rem;
  color: var(--ink);
  padding: .25rem .4rem;
}

.navbar-collapse {
  padding-bottom: 1rem;
}

@media (min-width: 992px) {
  .navbar-collapse {
    padding-bottom: 0;
  }
}


.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 2rem + 5vw, 6rem) 0 clamp(4rem, 3rem + 4vw, 7rem);
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
}

.hero-engraving {
  position: absolute;
  inset: 0;
  background: url("../images/guilloche.svg") center / 820px no-repeat;
  opacity: .5;
  pointer-events: none;
}

.hero-kicker {
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--brass);
  margin-bottom: .9rem;
  padding-left: 2.6rem;
  position: relative;
}

.hero-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 2rem;
  height: 1px;
  background: var(--brass);
}

.hero-title {
  font-size: var(--step-4);
  margin-bottom: 1.4rem;
}

.hero-lead {
  font-size: clamp(1.02rem, .98rem + .3vw, 1.18rem);
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.hero-note {
  font-size: var(--step-1);
  color: var(--ink-soft);
  max-width: 46ch;
}

.hero-note .bi {
  color: var(--emerald);
  margin-right: .35rem;
}


.account {
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
  padding: clamp(1.5rem, 1rem + 2vw, 2.25rem);
  box-shadow: 0 40px 80px -50px rgba(14, 28, 51, .9);
  border-top: 2px solid var(--brass);
}

.account-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.account-label {
  font-size: .8rem;
  color: rgba(255, 255, 255, .62);
  letter-spacing: .03em;
}

.account-total {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.4rem + 2vw, 2.7rem);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  margin-top: .2rem;
}

.account-delta {
  font-size: var(--step-1);
  font-weight: 600;
  color: #7FD6C2;
  background: rgba(127, 214, 194, .12);
  border-radius: 999px;
  padding: .25rem .7rem;
  white-space: nowrap;
}

.account-spark {
  width: 100%;
  height: 64px;
  margin: 1.2rem 0 .4rem;
  display: block;
}

.spark-line {
  fill: none;
  stroke: var(--brass-soft);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: draw 1.6s .35s var(--ease) forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.account-rows {
  list-style: none;
  margin: 0;
  padding: 0;
}

.account-rows li {
  display: grid;
  grid-template-columns: 3.4rem 1fr auto;
  align-items: baseline;
  gap: .5rem;
  padding: .72rem 0;
  border-bottom: 1px solid var(--rule-light);
  font-size: var(--step-1);
}

.account-rows li:last-child {
  border-bottom: 0;
}

.account-rows .cur {
  font-weight: 700;
  color: var(--brass-soft);
  letter-spacing: .04em;
}

.account-rows .name {
  color: rgba(255, 255, 255, .66);
}

.account-rows .val {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.account-foot {
  margin: 1rem 0 0;
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
}


.section {
  padding: var(--gap) 0;
}

.section-paper {
  background: var(--paper-2);
}

.section-ink {
  background: var(--ink);
  color: #fff;
}

.section-ink .section-lead {
  color: rgba(255, 255, 255, .7);
}

.section-title {
  font-size: var(--step-3);
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--ink-soft);
  margin-bottom: 0;
}


.facts {
  background: var(--paper);
  padding: 2.4rem 0;
}

.ledger {
  border-top: 1px solid var(--rule);
}

.ledger-cell {
  padding: 1.5rem .5rem 1.2rem;
  border-bottom: 1px solid var(--rule);
}

@media (min-width: 992px) {
  .ledger-cell+.ledger-cell {
    border-left: 1px solid var(--rule);
  }
}

.ledger-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.ledger-cap {
  display: block;
  margin-top: .35rem;
  font-size: var(--step-1);
  color: var(--ink-soft);
}


.solutions {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}

.solution {
  display: flex;
  gap: 1.25rem;
  padding: 1.65rem 0;
  border-bottom: 1px solid var(--rule);
}

.solution-icon {
  font-size: 1.5rem;
  color: var(--brass);
  line-height: 1.2;
  flex: 0 0 auto;
}

.solution h3 {
  font-size: var(--step-2);
  margin-bottom: .35rem;
}

.solution p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .97rem;
}


.plan {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  border: 1px solid var(--rule-light);
  border-radius: 6px;
  position: relative;
}

.plan-featured {
  background: rgba(255, 255, 255, .05);
  border-color: var(--brass);
}

.plan-flag {
  position: absolute;
  top: -.75rem;
  left: 1.75rem;
  background: var(--brass);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: .2rem .7rem;
  border-radius: 999px;
}

.plan-name {
  font-size: var(--step-2);
  margin-bottom: .4rem;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1.1;
  margin: 0 0 .25rem;
}

.plan-price span {
  display: block;
  font-family: var(--font-ui);
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  font-weight: 500;
  margin-top: .3rem;
}

.plan-note {
  font-size: var(--step-1);
  color: rgba(255, 255, 255, .65);
}

.plan-list {
  list-style: none;
  margin: 1.1rem 0 1.75rem;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--rule-light);
  font-size: .95rem;
  flex: 1 1 auto;
}

.plan-list li {
  display: flex;
  gap: .6rem;
  padding: .35rem 0;
  color: rgba(255, 255, 255, .85);
}

.plan-list .bi {
  color: var(--brass-soft);
}


.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  counter-reset: step;
}

.step {
  padding-top: 1.25rem;
  border-top: 2px solid var(--ink);
}

.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--brass);
  margin-bottom: .5rem;
}

.step h3 {
  font-size: var(--step-2);
  margin-bottom: .45rem;
}

.step p {
  color: var(--ink-soft);
  font-size: .97rem;
  margin: 0;
}


.quote {
  margin: 0;
  height: 100%;
}

.quote blockquote {
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.55;
  margin: 0 0 1.1rem;
  padding-left: 1.2rem;
  border-left: 2px solid var(--brass);
}

.quote figcaption {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: var(--step-1);
  color: var(--ink-soft);
}

.ava {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
}


.accordion-flush .accordion-item {
  background: transparent;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.accordion-button {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--ink);
  background: transparent;
  padding: 1.15rem 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  width: 1rem;
  height: 1rem;
  background-size: 1rem;
}

.accordion-body {
  padding: 0 0 1.25rem;
  color: var(--ink-soft);
  font-size: .97rem;
}


.apply-form {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--rule-light);
  border-radius: 6px;
  padding: clamp(1.4rem, 1rem + 2vw, 2.25rem);
}

.form-label {
  font-size: .84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  margin-bottom: .35rem;
}

.form-control,
.form-select {
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--rule-light);
  border-radius: var(--radius);
  color: #fff;
  padding: .7rem .9rem;
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, .1);
  border-color: var(--brass);
  color: #fff;
  box-shadow: none;
}

.form-select option {
  color: var(--ink);
}

.form-check-label {
  font-size: .88rem;
  color: rgba(255, 255, 255, .75);
}

.form-check-input {
  background-color: rgba(255, 255, 255, .1);
  border-color: var(--rule-light);
}

.form-check-input:checked {
  background-color: var(--brass);
  border-color: var(--brass);
}

.form-status {
  margin: 1.2rem 0 0;
  color: #7FD6C2;
  font-size: var(--step-1);
}

.form-status .bi {
  margin-right: .35rem;
}


.site-footer {
  background: var(--paper);
  padding: var(--gap) 0 2rem;
  font-size: var(--step-1);
}

.footer-brand .brand-word {
  font-size: 1.2rem;
}

.footer-about {
  color: var(--ink-soft);
  margin-top: .9rem;
  max-width: 36ch;
}

.footer-h {
  font-family: var(--font-ui);
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: .9rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li {
  padding: .22rem 0;
}

.footer-list a {
  color: var(--ink-soft);
}

.footer-list a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: .85rem;
  margin-top: 1rem;
  font-size: 1.2rem;
}

.footer-social a {
  color: var(--ink-soft);
}

.footer-social a:hover {
  color: var(--brass);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
}

.footer-bottom p {
  margin: 0 0 .5rem;
}

.footer-risk {
  font-size: .78rem;
  max-width: 90ch;
  opacity: .85;
}


.to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 1040;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--brass);
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 1.05rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background-color .25s var(--ease);
}

.to-top.is-visible {
  opacity: 1;
  transform: none;
}

.to-top:hover {
  background: var(--brass);
}


.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 72px;
  }

  .hero-engraving {
    background-size: 640px;
    opacity: .35;
  }

  .hero-title {
    max-width: 14ch;
  }

  .plan-flag {
    left: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .account-rows li {
    grid-template-columns: 3rem 1fr;
  }

  .account-rows .name {
    display: none;
  }

  .account-rows .val {
    text-align: right;
  }

  .hero-title br {
    display: none;
  }

  .to-top {
    right: .75rem;
    bottom: .75rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .spark-line {
    stroke-dashoffset: 0;
  }
}

@media print {

  .site-header,
  .to-top,
  .hero-engraving {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }
}