/* ============================================================
   FINTECH & BANKING — solutions page styles.

   Built on the shared design tokens + @font-face rules in
   styles.css: one 64rem content column, Suisse Intl display
   type, hairline rules instead of cards, white the only accent.

   The product this page sells is the STABLECOIN ACCOUNT: the
   reader is a neobank or payment-app PM whose users hold dollar
   balances that are USDC underneath. Everything on the page is
   written to THEM, in their vocabulary:
     · the hero: copy left, THEIR OWN PRODUCT right — a Northwind
       dollar account: dollars on the face, USDC underneath,
       funded from any wallet, chain, or exchange
     · the RECEIPT — one Friday-night cross-border transfer that
       lands in 0.9s; the SWIFT comparison is one muted line
     · media rows as the account stack: funded from anywhere →
       P2P / payroll / cross-border out → on/off ramps at the
       fiat edges → every transaction screened
     · the finale (closing couplet + email capture)
   Nothing on this page animates.
   ============================================================ */

/* ---------- Brand wordmark typeface (on the homepage this arrives
   via hero/_shared/widget.css; here we load just the two weights
   the wordmark needs, from the same bundled files) ---------- */
@font-face {
  font-family: "Open Sauce One";
  src: url("hero/_shared/assets/fonts/OpenSauceOne-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sauce One";
  src: url("hero/_shared/assets/fonts/OpenSauceOne-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   Hero — the message left, the reader's own account right.
   ============================================================ */
.shero {
  position: relative;
  padding: 4rem 2.5rem 0;      /* no bottom pad — the next section's top owns the gap */
}
.shero-inner {
  max-width: 64rem;
  margin: 0 auto;
}
.shero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  column-gap: 4rem;
  align-items: center;
}
.shero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ---- announcement pill (same construction as the homepage hero:
   ring → fill, with a rotating shine) — here a quiet page badge ---- */
.hero-pill {
  position: relative;
  display: inline-flex;
  margin: 0 0 2.5rem;
  padding: 1px;                       /* the 1px ring */
  border-radius: 999px;
  background: #222;                   /* static ring base */
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
}
.hero-pill::before {                  /* a single bright arc travelling around the ring */
  content: "";
  position: absolute;
  inset: -120%;
  z-index: 0;
  background: conic-gradient(from 0deg, transparent 0 60%, rgba(255, 255, 255, 0.5) 78%, transparent 90% 100%);
  animation: hero-pill-spin 5s linear infinite;
}
.hero-pill_inner {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background: #191919;
}
.hero-pill_label { font-size: 15px; line-height: 1.5; color: #fff; }
@keyframes hero-pill-spin { to { transform: rotate(1turn); } }
@media (prefers-reduced-motion: reduce) { .hero-pill::before { animation: none; } }

.shero-title {
  margin: 0;
  font-family: "Suisse Intl", Georgia, sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--gray-12);
  text-wrap: balance;
}
.shero-sub {
  margin: 1.5rem 0 0;
  max-width: 30rem;
  color: var(--gray-10);
  font-size: clamp(1.0625rem, 1.1vw, 1.1875rem);
  line-height: 1.55;
}
.shero-sub .lead { color: #eee; }    /* bright lead clause — the homepage two-tone */
.shero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* ---- the reader's own product: a dollar account that is USDC
   underneath. Balance on the face, the rail in the fine print.
   Holding still. ---- */
.acct {
  width: 100%;
  max-width: 23rem;
  border-radius: 0.875rem;
  background-color: var(--gray-2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 0 0 1px var(--border),
    0 28px 80px -26px rgba(0, 0, 0, 0.85),
    0 8px 22px -14px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
.acct-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.acct-avatar {
  display: grid;
  place-items: center;
  flex: none;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--accent-fg);
  font-size: 0.9375rem;
  font-weight: 700;
}
.acct-id { flex: 1; min-width: 0; }
.acct-title {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--gray-12);
}
.acct-sub {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.6875rem;
  color: var(--gray-10);
}
.acct-tag {
  flex: none;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background-color: var(--tile);
  box-shadow: inset 0 0 0 1px var(--border);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gray-12);
}
.acct-balance { padding: 1.25rem 1.25rem 0; }
.acct-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-10);
}
.acct-amount {
  display: block;
  margin-top: 0.375rem;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--gray-12);
  font-variant-numeric: tabular-nums;
}
.acct-held {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: var(--gray-10);
  font-variant-numeric: tabular-nums;
}
.acct-held img { width: 0.9375rem; height: 0.9375rem; border-radius: 50%; }
.acct-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 1.125rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.acct-btn {
  display: block;
  padding: 0.5625rem 0;
  border-radius: 0.5rem;
  background-color: var(--tile);
  box-shadow: inset 0 0 0 1px var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  color: var(--gray-12);
}
.acct-btn.is-primary {
  background-color: var(--accent);
  box-shadow: none;
  color: var(--accent-fg);
}
.acct-activity { padding: 0.875rem 0 0.375rem; }
.acct-activity > .acct-label { padding: 0 1.25rem; }
.acct-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6875rem 1.25rem;
}
.acct-row img {
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
}
.ar-mid { flex: 1; min-width: 0; }
.ar-t {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--gray-12);
  font-variant-numeric: tabular-nums;
}
.ar-s {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.6875rem;
  color: var(--gray-10);
}
.ar-amt {
  flex: none;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-12);
  font-variant-numeric: tabular-nums;
}
.ar-amt.is-out { color: var(--gray-10); font-weight: 500; }

/* ============================================================
   The receipt — one cross-border transfer, sent Friday just
   before midnight, landed in 0.9s. The legacy rail gets one
   muted line at the bottom. The timestamp IS the argument.
   ============================================================ */
.remit-sec {
  background-color: var(--gray-1);
  padding: 6.05rem 2.5rem;
}
.remit-inner {
  max-width: 64rem;
  margin: 0 auto;
}
.remit-statement {
  margin: 0 0 4.5rem;
  font-family: "Suisse Intl", Georgia, sans-serif;
  font-size: clamp(2.5rem, 4.8vw, 3.75rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--gray-12);
  text-wrap: balance;
}
.remit-statement span { display: block; }

.remit {
  width: 100%;
  max-width: 26rem;
  border-radius: 0.75rem;
  background-color: var(--gray-2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 0 0 1px var(--border),
    0 20px 50px -22px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}
.remit-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.remit-name {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--gray-12);
}
.remit-when {
  font-size: 0.6875rem;
  color: var(--gray-10);
  font-variant-numeric: tabular-nums;
}
.remit-leg {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9375rem 1.25rem;
}
.remit-leg img {
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
}
.rm-mid { flex: 1; min-width: 0; }
.rm-t {
  display: block;
  font-size: 0.6875rem;
  color: var(--gray-10);
}
.rm-s {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--gray-12);
  font-variant-numeric: tabular-nums;
}
.rm-time {
  flex: none;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-12);
  font-variant-numeric: tabular-nums;
}
.remit-rail {                    /* the hop between legs: hairlines through one spark */
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0 1.25rem;
}
.rm-line { flex: 1; height: 1px; background-color: var(--border); }
.rm-spark {
  display: grid;
  flex: none;
  place-items: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background: var(--gray-2);
  box-shadow:
    inset 0 0 0 1px var(--border-strong),
    0 0 16px rgba(255, 255, 255, 0.1);
}
.rm-spark svg { width: 0.8125rem; height: 0.8125rem; color: var(--white); }
.rm-via {
  flex: none;
  font-size: 0.6875rem;
  color: var(--gray-10);
  font-variant-numeric: tabular-nums;
}
.remit-foot {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--gray-10);
  font-variant-numeric: tabular-nums;
}
.remit-note {
  margin: 2.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--gray-10);
}
.remit-note b { color: var(--gray-12); font-weight: 500; }

/* ============================================================
   Media rows — the substance, each with a small still graphic.
   One through-line: the account stack — funded, sent, ramped,
   screened. Claims left, graphics right.
   ============================================================ */
.mrows {
  background-color: var(--gray-1);
  padding: 0 2.5rem 7rem;
}
.mrows-inner {
  max-width: 64rem;
  margin: 0 auto;
}
.mrows .products-head { margin-bottom: 3.5rem; }
.mrow {
  display: grid;
  grid-template-columns: 1fr minmax(0, 22rem);
  gap: 4rem;
  align-items: center;
  padding: 2.75rem 0;
  border-top: 1px solid var(--border);
}
.mrow-media {
  display: flex;
  justify-content: flex-end;
}
.mrow-text h3 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--gray-12);
}
.mrow-text p {
  margin: 0.625rem 0 0;
  max-width: 34rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--gray-10);
}
.mrow-text .flow-link {
  margin-top: 1rem;
  font-size: 0.875rem;
}

/* the media cards share one skin: statement-weight surfaces */
.feed, .xfers, .ramp, .screen {
  width: 100%;
  max-width: 22rem;
  border-radius: 0.75rem;
  background-color: var(--gray-2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 0 0 1px var(--border),
    0 20px 50px -22px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}
/* and one header grammar: name left, tag or id right */
.feed-bar, .xfers-bar, .ramp-bar, .screen-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1.125rem;
  border-bottom: 1px solid var(--border);
}
.feed-name, .xfers-name, .ramp-name, .screen-name {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--gray-12);
}
.feed-tag, .ramp-tag {
  padding: 0.125rem 0.625rem;
  border-radius: 999px;
  background: var(--alpha-2);
  font-size: 0.6875rem;
  color: var(--gray-10);
}

/* ---- 1 · the deposit feed: an exchange and two wallets land in
   the same account — converted rows say so in the fine print ---- */
.feed-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8125rem 1.125rem;
}
.feed-row + .feed-row { border-top: 1px solid var(--border); }
.feed-row img {
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 6px;
}
.fd-mid { flex: 1; min-width: 0; }
.fd-t {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--gray-12);
}
.fd-s {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.6875rem;
  color: var(--gray-10);
  font-variant-numeric: tabular-nums;
}
.fd-amt {
  flex: none;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-12);
  font-variant-numeric: tabular-nums;
}
.feed-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.875rem 1.125rem;
  border-top: 1px solid var(--border);
}
.feed-total span {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-10);
}
.feed-total b {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-12);
  font-variant-numeric: tabular-nums;
}

/* ---- 2 · transfers out: a P2P send, a payroll batch, and a
   remittance — three sizes of the same API call ---- */
.xfers-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8125rem 1.125rem;
}
.xfers-row + .xfers-row { border-top: 1px solid var(--border); }
.xf-ava {
  display: grid;
  place-items: center;
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: var(--tile);
  box-shadow: inset 0 0 0 1px var(--border);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gray-12);
}
.xf-mid { flex: 1; min-width: 0; }
.xf-t {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--gray-12);
  font-variant-numeric: tabular-nums;
}
.xf-s {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.6875rem;
  color: var(--gray-10);
  font-variant-numeric: tabular-nums;
}
.xf-amt {
  flex: none;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-12);
  font-variant-numeric: tabular-nums;
}
.xfers-foot {
  padding: 0.75rem 1.125rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--gray-10);
}

/* ---- 3 · the ramp: stablecoin on one side, a bank account on
   the other — provider, fee, and settlement in the spec rows ---- */
.ramp-leg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9375rem 1.125rem 0;
}
.ramp-leg + .ramp-leg { padding-top: 0.75rem; }
.rp-label {
  font-size: 0.6875rem;
  color: var(--gray-10);
}
.rp-val {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--gray-12);
  font-variant-numeric: tabular-nums;
}
.rp-val img { width: 1.25rem; height: 1.25rem; border-radius: 50%; }
.ramp-specs {
  margin: 1.125rem 1.125rem 0;
  padding: 0.375rem 0 0.75rem;
  border-top: 1px solid var(--border);
}
.ramp-spec {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.375rem 0;
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
}
.ramp-spec span { color: var(--gray-10); }
.ramp-spec b { color: var(--gray-12); font-weight: 500; }

/* ---- 4 · the compliance engine: one transaction's screening
   record — three passes and, below the rule, one hold. The held
   row is the proof the checks are real. ---- */
.screen-id {
  padding: 0.125rem 0.625rem;
  border-radius: 999px;
  background: var(--alpha-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.6875rem;
  color: var(--gray-10);
}
.screen-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.125rem;
}
.screen-row + .screen-row { border-top: 1px solid var(--border); }
.sc-check {
  display: grid;
  flex: none;
  place-items: center;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-fg);
}
.sc-check svg { width: 0.625rem; height: 0.625rem; }
.sc-hold {                      /* hollow — nothing was signed */
  display: grid;
  flex: none;
  place-items: center;
  width: 1rem;
  height: 1rem;
  color: var(--gray-10);
}
.sc-hold svg { width: 1rem; height: 1rem; }
.sc-mid { flex: 1; min-width: 0; }
.sc-t {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--gray-12);
  font-variant-numeric: tabular-nums;
}
.sc-s {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.6875rem;
  color: var(--gray-10);
}
.sc-res {
  flex: none;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-12);
  font-variant-numeric: tabular-nums;
}
.screen-row.is-held .sc-t { color: var(--gray-10); }
.screen-row.is-held .sc-res { color: var(--gray-10); }

/* ============================================================
   Finale — the quiet close: the couplet and an email capture,
   nothing else (fun.xyz's closing register, in our type).
   ============================================================ */
.finale {
  background-color: var(--gray-1);
  padding: 0 2.5rem 7rem;
}
.finale-inner {
  max-width: 64rem;
  margin: 0 auto;
}
.finale-statement {
  margin: 0;
  font-family: "Suisse Intl", Georgia, sans-serif;
  font-size: clamp(2.5rem, 4.8vw, 3.75rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--gray-12);
  text-wrap: balance;
}
.finale-statement_line { display: block; }
.finale .cta-connect { margin-top: 2.5rem; }

/* ============================================================
   Responsive — aligned to the site's existing breakpoints
   (1024 hero · 991 nav · 720 products · 600 small).
   ============================================================ */
@media (max-width: 1024px) {
  .shero { padding: 3.5rem 1.5rem 0; }
  .shero-grid {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }
  .shero-sub { max-width: 40rem; }
  .shero-media { justify-content: flex-start; }
  .remit-sec { padding: 5rem 1.5rem; }
  .mrows { padding: 0 1.5rem 5.5rem; }
  .finale { padding: 0 1.5rem 5rem; }
}
@media (max-width: 720px) {
  .remit-statement { margin-bottom: 3rem; }
  .mrow { grid-template-columns: 1fr; gap: 1.75rem; padding: 2.5rem 0; }
  .mrow-media { justify-content: flex-start; }
}
@media (max-width: 600px) {
  .shero { padding: 2.75rem 1.25rem 0; }
  .rm-via { font-size: 0.625rem; }
}
