/* ============================================================
   Ballpoint — "Bold Ink" stylesheet
   Self-contained. No external requests. Fonts self-hosted.
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Clash Display";
  src: url("fonts/ClashDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("fonts/ClashDisplay-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("fonts/ClashDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("fonts/GeneralSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("fonts/GeneralSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("fonts/GeneralSans-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("fonts/JetBrainsMono-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  --ink: #131316;
  --paper: #f4f3ee;
  --blue: #2947ff;
  --blue-deep: #1b32c4;
  --coral: #ff5a33;
  --card: #ffffff;
  --muted: #6f6d67;
  --edge: #e6e4dc;
  --night: #0e0e13;

  --font-display: "Clash Display", "Arial Narrow", sans-serif;
  --font-body: "General Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --shadow-card: 0 1px 0 rgba(19, 19, 22, 0.04),
    0 10px 24px -12px rgba(19, 19, 22, 0.18);
  --shadow-lift: 0 2px 0 rgba(19, 19, 22, 0.05),
    0 26px 50px -20px rgba(19, 19, 22, 0.32);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --wrap: 1140px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 0.96rem + 0.25vw, 1.12rem);
  line-height: 1.6;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
p {
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ---------- Accessibility helpers ---------- */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}
/* Focus on dark grounds: blue outline disappears on night sections,
   so switch to a light ring for links inside them. */
.trust :focus-visible,
.final :focus-visible,
.site-footer :focus-visible {
  outline-color: #fff;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  transition: top 0.18s ease;
}
.skip-link:focus {
  top: 12px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0;
}
.eyebrow--muted {
  color: var(--muted);
}

/* Coral hand-drawn pen-stroke bar */
.stroke {
  display: block;
  height: 7px;
  width: clamp(72px, 12vw, 128px);
  margin-top: 0.85rem;
  border-radius: 40px;
  background: var(--coral);
  transform: rotate(-1.2deg);
  box-shadow: 0 2px 0 rgba(255, 90, 51, 0.28);
}
.stroke--center {
  margin-inline: auto;
}
.ink-underline {
  position: relative;
  white-space: nowrap;
}
.ink-underline::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.02em;
  height: 0.34em;
  background: var(--coral);
  border-radius: 40px;
  transform: rotate(-1deg);
  z-index: -1;
  opacity: 0.9;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease,
    background 0.14s ease, color 0.14s ease, border-color 0.14s ease;
  will-change: transform;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 0 var(--blue-deep), 0 14px 26px -12px rgba(41, 71, 255, 0.7);
}
.btn--primary:hover {
  background: #2039e6;
  transform: translateY(-1px);
  box-shadow: 0 6px 0 var(--blue-deep), 0 20px 34px -14px rgba(41, 71, 255, 0.75);
}
.btn--primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--blue-deep), 0 10px 20px -12px rgba(41, 71, 255, 0.7);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}
.btn--light {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.28);
}
.btn--light:hover {
  transform: translateY(-1px);
  background: #fff;
}
.btn--coral {
  background: var(--coral);
  color: #2a0f06;
  box-shadow: 0 4px 0 #cc3d1c, 0 14px 26px -12px rgba(255, 90, 51, 0.7);
}
.btn--coral:hover {
  transform: translateY(-1px);
  background: #ff6a46;
}
.btn--sm {
  padding: 0.6rem 1.05rem;
  font-size: 0.92rem;
}
.btn--block {
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 243, 238, 0.82);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--edge);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.brand__mark {
  width: 30px;
  height: 30px;
  flex: none;
}
.header-nav {
  display: none;
  align-items: center;
  gap: 1.6rem;
}
.header-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink);
  opacity: 0.78;
  transition: opacity 0.14s ease;
}
.header-nav a:hover {
  opacity: 1;
}
.header-cta {
  display: inline-flex;
}
@media (min-width: 860px) {
  .header-nav {
    display: flex;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
  overflow: hidden;
}
.hero::before {
  /* soft radial atmosphere */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      120% 90% at 88% -10%,
      rgba(41, 71, 255, 0.1),
      transparent 55%
    ),
    radial-gradient(90% 70% at -10% 110%, rgba(255, 90, 51, 0.09), transparent 55%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}
@media (min-width: 940px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}
.hero__eyebrow {
  margin-bottom: 1.15rem;
}
.hero h1 {
  font-size: clamp(2.85rem, 8.5vw, 5.4rem);
  letter-spacing: -0.045em;
}
.hero h1 .line {
  display: block;
}
.hero__sub {
  margin-top: 1.5rem;
  font-size: clamp(1.08rem, 1rem + 0.6vw, 1.32rem);
  color: #34343a;
  max-width: 32ch;
}
.hero__cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.hero__signin {
  margin-top: 1.05rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__signin svg {
  flex: none;
}

/* ---------- Phone mockup ---------- */
.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-stage::after {
  /* coral confetti dot for personality */
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--coral);
  top: 6%;
  right: 14%;
  box-shadow: 0 10px 20px -8px rgba(255, 90, 51, 0.6);
  transform: rotate(8deg);
}
.phone {
  position: relative;
  width: min(320px, 78vw);
  aspect-ratio: 320 / 660;
  background: var(--ink);
  border-radius: 46px;
  padding: 12px;
  box-shadow: var(--shadow-lift), 0 0 0 2px rgba(19, 19, 22, 0.9) inset;
  transform: rotate(1.6deg);
}
.phone__notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 108px;
  height: 26px;
  background: var(--ink);
  border-radius: 14px;
  z-index: 3;
}
.phone__screen {
  position: relative;
  height: 100%;
  border-radius: 36px;
  background: var(--paper);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.app {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px 16px 16px;
  height: 100%;
}
.app__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--ink);
  opacity: 0.65;
  margin-top: -6px;
}
.app__greeting {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--muted);
}
.app__owed-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.app__owed {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.55rem;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.app__owed-stroke {
  height: 6px;
  width: 92px;
  border-radius: 30px;
  background: var(--coral);
  transform: rotate(-1.4deg);
  margin-top: 4px;
}
.app__snap {
  margin-top: 4px;
  background: var(--blue);
  color: #fff;
  border-radius: 20px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 22px -12px rgba(41, 71, 255, 0.85);
}
.app__snap-icon {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  flex: none;
}
.app__snap-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.app__snap-text strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}
.app__snap-text span {
  font-size: 0.68rem;
  opacity: 0.85;
}
.app__recent-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.app__card {
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: 16px;
  padding: 13px 14px;
  box-shadow: 0 6px 14px -12px rgba(19, 19, 22, 0.4);
}
.app__card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.app__card-top strong {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
}
.app__card-amt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}
.app__card-sub {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 2px;
}
.app__pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 9px;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
}
.app__pill--sent {
  background: rgba(41, 71, 255, 0.12);
  color: var(--blue-deep);
}
.app__pill--paid {
  background: rgba(31, 160, 90, 0.14);
  color: #167a45;
}
.app__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.app__tabbar {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--edge);
  color: var(--muted);
}
.app__tab {
  display: grid;
  place-items: center;
  gap: 3px;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.05em;
}
.app__tab--active {
  color: var(--blue);
}

/* trust chips under hero (desktop) */
.hero__proof {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.hero__proof li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

/* ---------- Section heading block ---------- */
.section-head {
  max-width: 40ch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
  max-width: 44ch;
}
.section-head h2 {
  font-size: clamp(2rem, 1.4rem + 3vw, 3.4rem);
  margin-top: 0.6rem;
}
.section-head p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.08rem;
}

/* ---------- How it works ---------- */
.how {
  background: var(--card);
  border-block: 1px solid var(--edge);
}
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  counter-reset: step;
}
@media (min-width: 760px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.7rem;
  box-shadow: var(--shadow-card);
}
.step__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--blue);
}
.step__num small {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  display: block;
  margin-bottom: 0.4rem;
}
.step h3 {
  font-size: 1.5rem;
  margin-top: 0.9rem;
}
.step p {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 1rem;
}
.step__icon {
  position: absolute;
  top: 1.5rem;
  right: 1.4rem;
  width: 34px;
  height: 34px;
  color: var(--ink);
  opacity: 0.28;
}

/* ---------- Features grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 620px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 980px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature {
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem 1.8rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.feature__icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(41, 71, 255, 0.1);
  color: var(--blue);
  margin-bottom: 1.1rem;
}
.feature:nth-child(3n + 2) .feature__icon {
  background: rgba(255, 90, 51, 0.13);
  color: var(--coral);
}
.feature:nth-child(3n) .feature__icon {
  background: rgba(19, 19, 22, 0.07);
  color: var(--ink);
}
.feature h3 {
  font-size: 1.3rem;
}
.feature p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 1rem;
}

/* ---------- Trust / why ---------- */
.trust {
  background: var(--night);
  color: var(--paper);
}
.trust .eyebrow {
  color: #7f92ff;
}
.trust h2 {
  color: #fff;
  font-size: clamp(2rem, 1.4rem + 3vw, 3.4rem);
  margin-top: 0.6rem;
}
.trust__lead {
  margin-top: 1rem;
  color: #b7b6c2;
  max-width: 46ch;
}
.trust-grid {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 720px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.trust-card {
  background: #17171f;
  border: 1px solid #26262f;
  border-radius: var(--radius);
  padding: 1.6rem 1.55rem;
  position: relative;
}
.trust-card__check {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--coral);
  color: #2a0f06;
  display: grid;
  place-items: center;
  margin-bottom: 0.95rem;
}
.trust-card h3 {
  color: #fff;
  font-size: 1.3rem;
}
.trust-card p {
  margin-top: 0.5rem;
  color: #b7b6c2;
  font-size: 1rem;
}

/* ---------- Pricing ---------- */
.pricing__card {
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.6rem);
  box-shadow: var(--shadow-card);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    80% 60% at 50% -10%,
    rgba(41, 71, 255, 0.08),
    transparent 60%
  );
  pointer-events: none;
}
.pricing__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(41, 71, 255, 0.1);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}
.pricing__card h2 {
  font-size: clamp(2rem, 1.5rem + 2.6vw, 3.2rem);
  margin-top: 1.15rem;
}
.pricing__card p {
  margin: 1.15rem auto 0;
  max-width: 52ch;
  color: #35353b;
  font-size: 1.08rem;
}
.pricing__flat {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.9rem;
}
.pricing__flat .big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 2rem + 3vw, 3.6rem);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing__flat .small {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.6rem;
}
.pricing__cta {
  margin-top: 1.9rem;
  display: flex;
  justify-content: center;
}
.pricing__mini {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--muted);
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--card);
  border-block: 1px solid var(--edge);
}
.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.16s ease, border-color 0.16s ease;
}
.faq-item[open] {
  box-shadow: var(--shadow-card);
  border-color: #d7d5cc;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.32rem);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "";
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  background-image: linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 2.5px, 2.5px 12px;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover {
  color: var(--blue-deep);
}
.faq-answer {
  padding: 0 1.4rem 1.35rem;
  color: var(--muted);
  font-size: 1.02rem;
}

/* ---------- Final CTA band ---------- */
.final {
  background: var(--night);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      70% 90% at 80% 120%,
      rgba(41, 71, 255, 0.35),
      transparent 55%
    ),
    radial-gradient(60% 90% at 10% -20%, rgba(255, 90, 51, 0.25), transparent 55%);
  pointer-events: none;
}
.final__inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final h2 {
  color: #fff;
  font-size: clamp(2.1rem, 1.4rem + 3.4vw, 3.8rem);
  max-width: 18ch;
}
.final p {
  margin-top: 1.2rem;
  color: #c6c5d1;
  max-width: 40ch;
  font-size: 1.1rem;
}
.final__cta {
  margin-top: 2rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--night);
  color: #b7b6c2;
  border-top: 1px solid #23232c;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 720px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.footer-brand {
  max-width: 34ch;
}
.footer-brand .brand {
  color: #fff;
}
.footer-tagline {
  margin-top: 1rem;
  color: #9c9ba8;
  font-size: 0.98rem;
}
.footer-cols {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9291a3;
  margin-bottom: 0.55rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.footer-col a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #c6c5d1;
  font-size: 0.98rem;
  transition: color 0.14s ease;
}
.footer-col a:hover {
  color: #fff;
}
.footer-meta {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #23232c;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #9291a3;
}
.footer-meta__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
  align-items: center;
}
.footer-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transition: color 0.14s ease;
}
.footer-meta a:hover {
  color: #fff;
}

/* store buttons */
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 1.05rem;
  border-radius: 14px;
  border: 1px solid #33333d;
  background: #17171f;
  color: #fff;
  transition: transform 0.14s ease, border-color 0.14s ease,
    background 0.14s ease;
}
.store-btn:hover {
  transform: translateY(-2px);
  border-color: #4a4a57;
  background: #1d1d26;
}
.store-btn svg {
  flex: none;
}
.store-btn__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: left;
}
.store-btn__text small {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}
.store-btn__text strong {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
}

/* ---------- Legal / article pages ---------- */
.legal-hero {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--edge);
  background: var(--card);
}
.legal-hero .eyebrow {
  margin-bottom: 0.9rem;
}
.legal-hero h1 {
  font-size: clamp(2.2rem, 1.6rem + 3vw, 3.4rem);
}
.legal-hero .updated {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
}
.legal-hero .back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--blue);
}
.legal-hero .back:hover {
  text-decoration: underline;
}
.article {
  max-width: 760px;
  margin-inline: auto;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.article h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2rem);
  margin-top: 2.6rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.025em;
}
.article h2:first-of-type {
  margin-top: 0;
}
.article h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.14rem;
  letter-spacing: -0.01em;
  margin-top: 1.8rem;
  margin-bottom: 0.3rem;
}
.article p {
  margin-top: 0.9rem;
  color: #2f2f34;
  line-height: 1.72;
}
.article ul {
  margin-top: 0.9rem;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.article ul li {
  position: relative;
  padding-left: 1.5rem;
  color: #2f2f34;
  line-height: 1.65;
}
.article ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}
.article strong {
  font-weight: 600;
  color: var(--ink);
}
.article a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article .placeholder {
  background: rgba(255, 90, 51, 0.14);
  color: #a83318;
  font-family: var(--font-mono);
  font-size: 0.85em;
  padding: 0.1em 0.4em;
  border-radius: 6px;
  border: 1px dashed rgba(255, 90, 51, 0.5);
}
.article .lead {
  font-size: 1.12rem;
  color: #34343a;
}
.article hr {
  border: 0;
  border-top: 1px solid var(--edge);
  margin: 2.4rem 0;
}
.legal-cta {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(3rem, 6vw, 5rem);
}
.legal-cta__box {
  background: var(--paper);
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.legal-cta__box p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

/* ---------- Page-load reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal-in 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.reveal-1 {
  animation-delay: 0.05s;
}
.reveal-2 {
  animation-delay: 0.16s;
}
.reveal-3 {
  animation-delay: 0.27s;
}
.reveal-4 {
  animation-delay: 0.38s;
}
.reveal-5 {
  animation-delay: 0.5s;
}
.reveal-6 {
  animation-delay: 0.62s;
}
@keyframes reveal-in {
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .btn,
  .feature,
  .store-btn {
    transition: none;
  }
}
