:root {
  --cream: #fff9ef;
  --paper: #fffdf8;
  --ink: #241927;
  --muted: #746c75;
  --aubergine: #31043b;
  --aubergine-soft: #4a1853;
  --coral: #fa5446;
  --orange: #ff941f;
  --herb: #148f70;
  --line: rgba(49, 4, 59, 0.13);
  --shadow: 0 28px 70px rgba(49, 4, 59, 0.14);
  --radius: 28px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 3%, rgba(255, 148, 31, 0.13), transparent 30rem),
    radial-gradient(circle at 93% 18%, rgba(250, 84, 70, 0.10), transparent 28rem),
    var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--aubergine);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  box-shadow: 0 8px 22px rgba(49, 4, 59, 0.19);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.87rem;
  font-weight: 650;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--aubergine);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: clamp(48px, 8vw, 104px);
  align-items: center;
  min-height: 700px;
  padding: 76px 0 112px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--herb);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--aubergine);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(4rem, 8.1vw, 7.1rem);
}

h1 em {
  color: var(--coral);
  font-style: italic;
  font-weight: 500;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 630px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--aubergine);
  border-radius: 999px;
  background: var(--aubergine);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(49, 4, 59, 0.2);
}

.button.secondary {
  background: transparent;
  color: var(--aubergine);
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.hero-visual::before {
  position: absolute;
  inset: 6% 2% 2% 8%;
  border-radius: 50% 42% 46% 55%;
  background: linear-gradient(145deg, rgba(255, 148, 31, 0.32), rgba(250, 84, 70, 0.11));
  filter: blur(1px);
  content: "";
}

.ledger {
  position: absolute;
  inset: 36px 22px 36px 0;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 42px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  transform: rotate(1.8deg);
}

.ledger-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.ledger-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ledger-title img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}

.ledger-title strong,
.ledger-title span {
  display: block;
}

.ledger-title strong {
  color: var(--aubergine);
  font-size: 1rem;
}

.ledger-title span,
.portion span,
.ledger-total span,
.ledger-foot {
  color: var(--muted);
  font-size: 0.76rem;
}

.ledger-total {
  text-align: right;
}

.ledger-total strong {
  display: block;
  color: var(--aubergine);
  font-size: 1.55rem;
  font-variant-numeric: tabular-nums;
}

.portion-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.portion {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.portion-dot {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: rgba(250, 84, 70, 0.12);
  color: var(--coral);
  font-weight: 800;
}

.portion:nth-child(2) .portion-dot {
  background: rgba(255, 148, 31, 0.14);
  color: #d96f00;
}

.portion:nth-child(3) .portion-dot {
  background: rgba(20, 143, 112, 0.13);
  color: var(--herb);
}

.portion strong,
.portion span {
  display: block;
}

.portion > strong {
  color: var(--aubergine);
  font-variant-numeric: tabular-nums;
}

.remainder {
  margin-top: 20px;
  padding: 18px;
  border-radius: 20px;
  background: var(--aubergine);
  color: #fff;
}

.remainder-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-weight: 700;
}

.meter {
  height: 7px;
  margin-top: 13px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.17);
}

.meter span {
  display: block;
  width: 84%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), var(--orange));
}

.ledger-foot {
  margin: 18px 4px 0;
  text-align: center;
}

.section {
  padding: 112px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 56px;
}

.section-head p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 1.08rem;
}

.proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.68);
}

.step-card::after {
  position: absolute;
  right: -20px;
  bottom: -55px;
  color: rgba(49, 4, 59, 0.055);
  font-family: var(--serif);
  font-size: 11rem;
  line-height: 1;
  content: attr(data-step);
}

.step-number {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.step-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.trust-section {
  overflow: hidden;
  background: var(--aubergine);
  color: #fff;
}

.trust-section h2,
.trust-section h3 {
  color: #fff;
}

.trust-section .eyebrow {
  color: #ffb35d;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: start;
}

.trust-copy > p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.12rem;
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust-item {
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.trust-item p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.92rem;
}

.formula {
  margin-top: 34px;
  padding: 22px 24px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, 0.06);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(0.82rem, 1.6vw, 1rem);
  overflow-wrap: anywhere;
}

.closing {
  padding: 130px 0;
  text-align: center;
}

.closing h2 {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.closing p {
  max-width: 620px;
  margin: 0 auto 30px;
  color: var(--muted);
}

.site-footer {
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 26px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

.legal-main {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 120px;
}

.legal-header {
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line);
}

.legal-header h1 {
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 8vw, 5.8rem);
}

.legal-header p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
}

.legal-content {
  padding-top: 48px;
}

.legal-content section {
  margin-bottom: 46px;
  scroll-margin-top: 30px;
}

.legal-content h2 {
  margin-bottom: 14px;
  font-family: var(--sans);
  font-size: 1.65rem;
  font-weight: 750;
  letter-spacing: -0.035em;
}

.legal-content h3 {
  margin-top: 28px;
}

.legal-content p,
.legal-content li {
  color: #514a53;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.35rem;
}

.legal-content li + li {
  margin-top: 8px;
}

.notice {
  margin: 28px 0 42px;
  padding: 22px 24px;
  border: 1px solid rgba(20, 143, 112, 0.24);
  border-radius: 20px;
  background: rgba(20, 143, 112, 0.08);
  color: #275c4f;
}

.support-card {
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.72);
}

.support-card summary {
  position: relative;
  padding: 22px 56px 22px 24px;
  color: var(--aubergine);
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.support-card summary::-webkit-details-marker {
  display: none;
}

.support-card summary::after {
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--coral);
  font-size: 1.35rem;
  content: "+";
}

.support-card[open] summary::after {
  content: "−";
}

.support-answer {
  padding: 0 24px 23px;
  color: #514a53;
}

.support-answer p:first-child,
.support-answer ol:first-child,
.support-answer ul:first-child {
  margin-top: 0;
}

.contact-panel {
  margin-top: 48px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--aubergine);
  color: #fff;
}

.contact-panel h2,
.contact-panel a {
  color: #fff;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.72);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .ledger {
    animation: rise 600ms both cubic-bezier(0.2, 0.75, 0.25, 1);
  }

  .ledger {
    animation-delay: 100ms;
  }

  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
  }
}

@media (max-width: 860px) {
  .hero,
  .section-head,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 30px;
    padding-top: 48px;
  }

  .hero-visual {
    min-height: 590px;
  }

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

  .step-card {
    min-height: 230px;
  }
}

@media (max-width: 580px) {
  .site-shell,
  .legal-main {
    width: min(100% - 28px, 1180px);
  }

  .site-nav {
    min-height: 74px;
  }

  .brand span {
    display: none;
  }

  .nav-links {
    gap: 15px;
    font-size: 0.78rem;
  }

  .nav-links a:first-child {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 76px;
  }

  h1 {
    max-width: 100%;
    font-size: 3.35rem;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    padding: 0 18px;
    font-size: 0.82rem;
  }

  .hero-visual {
    min-height: 520px;
  }

  .ledger {
    inset: 15px 0 15px;
    padding: 21px;
    border-radius: 32px;
    transform: none;
  }

  .ledger-title img {
    width: 48px;
    height: 48px;
  }

  .ledger-title > div {
    min-width: 0;
  }

  .ledger-title span,
  .ledger-total span {
    display: none;
  }

  .ledger-title strong {
    font-size: 0.86rem;
  }

  .ledger-total strong {
    font-size: 1.05rem;
  }

  .portion {
    grid-template-columns: 36px minmax(0, 1fr) auto;
    padding: 13px;
  }

  .section {
    padding: 78px 0;
  }

  .footer-row {
    flex-direction: column;
  }
}
