:root {
  --canvas-deep: #1a6b66;
  --canvas-mid: #2e8c80;
  --canvas: #47a894;
  --mist: #61bda8;
  --money: #148c61;
  --debt: #db4738;
  --settle: #1f527a;
  --ink: #0f1f24;
  --muted: #2e474d;
  --slip: rgba(224, 247, 240, 0.88);
  --line: rgba(255, 255, 255, 0.28);
  --glow: rgba(97, 189, 168, 0.45);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 18px;
  --max: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: #e8f7f3;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(97, 189, 168, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(31, 82, 122, 0.4), transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 90%, rgba(219, 71, 56, 0.12), transparent 45%),
    linear-gradient(165deg, var(--canvas-deep) 0%, var(--canvas-mid) 42%, var(--canvas) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.55;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 0.5rem;
  top: 0.5rem;
}

a {
  color: #b8efe3;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #fff;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 0.75rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

h3 {
  font-size: 1.25rem;
}

.subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1rem;
  max-width: 34rem;
}

.lede {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1.5rem;
}

/* Floating pill nav — bottom, not sticky top clone */
.pill-nav {
  position: fixed;
  z-index: 40;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.15rem;
  padding: 0.4rem;
  background: rgba(15, 31, 36, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28), 0 0 40px var(--glow);
}

.pill-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pill-nav a:hover,
.pill-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.menu-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(15, 31, 36, 0.75);
  backdrop-filter: blur(10px);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 5.5rem;
  position: relative;
}

.hero__rail {
  position: absolute;
  left: 0;
  top: 3rem;
  bottom: 3rem;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--money), var(--settle), transparent);
  opacity: 0.85;
  display: none;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--settle);
  color: #fff;
  box-shadow: 0 8px 28px rgba(31, 82, 122, 0.45), 0 0 24px rgba(20, 140, 97, 0.25);
}

.btn--primary:hover {
  color: #fff;
  background: #274f72;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
  color: #fff;
}

.hero__stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  max-width: 28rem;
}

.hero__stats li {
  background: rgba(15, 31, 36, 0.28);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero__stats strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
}

.hero__stats span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero__desk {
  display: grid;
  gap: 0.85rem;
  position: relative;
}

.hero__desk::before {
  content: "";
  position: absolute;
  inset: -12% -8%;
  background: radial-gradient(circle at 50% 40%, var(--glow), transparent 65%);
  z-index: -1;
  pointer-events: none;
}

.slip {
  background: var(--slip);
  color: var(--ink);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 1rem 1.15rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.slip--a {
  transform: rotate(-2.5deg);
}

.slip--b {
  transform: rotate(1.8deg);
  margin-left: 1.5rem;
}

.slip--c {
  transform: rotate(-1deg);
}

.slip__label,
.slip__kicker {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.slip__val {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 1.45rem;
  font-weight: 700;
}

.slip__val--money {
  color: var(--money);
}

.slip__val--debt {
  color: var(--debt);
}

.slip--c p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.features,
.about,
.privacy,
.contact {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
}

.section-intro {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
}

.feature-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.feature-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 1.25rem;
  background: rgba(15, 31, 36, 0.28);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.feature-steps li:nth-child(even) {
  margin-left: clamp(0rem, 4vw, 2.5rem);
}

.feature-steps .num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--mist);
  min-width: 2.2rem;
}

.feature-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}

.about__panel {
  background: rgba(15, 31, 36, 0.35);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 0 60px rgba(97, 189, 168, 0.12);
}

.about__panel p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 42rem;
}

.disclaimer {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(31, 82, 122, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.95rem;
}

.meta-date {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.privacy__body {
  display: grid;
  gap: 0.65rem;
}

.privacy__body > p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 0.5rem;
}

.privacy__body details {
  background: rgba(15, 31, 36, 0.32);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
}

.privacy__body summary {
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  list-style: none;
}

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

.privacy__body summary::after {
  content: "+";
  float: right;
  color: var(--mist);
  font-weight: 700;
}

.privacy__body details[open] summary::after {
  content: "–";
}

.privacy__body details p,
.privacy__body details li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.privacy__body ul {
  padding-left: 1.2rem;
}

.contact__card {
  background: rgba(15, 31, 36, 0.4);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22), 0 0 50px rgba(31, 82, 122, 0.2);
}

.reply {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 1.75rem 0 0;
}

.contact__grid dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.35rem;
}

.contact__grid dd {
  margin: 0;
  font-weight: 600;
}

.contact__grid a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.site-foot {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 6.5rem;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
}

.site-foot code {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 3.5rem;
  }

  .hero__desk {
    order: -1;
    max-width: 22rem;
  }

  .menu-toggle {
    display: flex;
  }

  .pill-nav {
    flex-direction: column;
    align-items: stretch;
    left: auto;
    right: 1rem;
    bottom: auto;
    top: 4.25rem;
    transform: none;
    border-radius: 18px;
    padding: 0.55rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }

  .pill-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .pill-nav a {
    border-radius: 12px;
  }

  .feature-steps li:nth-child(even) {
    margin-left: 0;
  }

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

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

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

  .btn:hover {
    transform: none;
  }
}
