/* Tradeline Town — Credit Caesars visual family (the LIVE creditcaesars.com/apply, /programs, /intake system).
   Source of truth: projects/credit-caesars-nrd-funnel/ — page.ghl.html (#cc), programs.ghl.html (#pp),
   intake.ghl.html + intake-redesign/form-skin.css (#ip), and the reusable _delivery-shared.css (#RID).
   Every token, the .hl highlight, .eyebrow, .cta pill, card surface, plan glow, input skin, wordmark and
   footer are copied from those files. Selector names are the storefront's existing ones, so app.js is untouched. */

:root {
  /* _delivery-shared.css / #pp tokens */
  --deep: #141519;
  --navy: #1C1D22;
  --line: rgba(255, 255, 255, .10);
  --gold: #E3B44C;
  --cta: #1B5CFF;
  --cta-hi: #3C78FF;
  --ok: #25A55B;
  --ink: #F4F7FF;
  --ink-dim: #9FAEC9;
  --ink-mute: #7C8AA6;
  /* #cc hero tokens */
  --hero-a: #16213F; --hero-b: #0B1226; --hero-c: #070B16;
  --panel: #121C36;
  /* plan-card accent (programs .plan) */
  --a: #5B90FF; --a-lite: #B7D0FF; --a-deep: #1348B8; --a-glow: rgba(91, 144, 255, .8);
  --g-lite: #FBE6AE; --g-deep: #9A7420; --g-glow: rgba(227, 180, 76, .85);
  /* names the storefront markup/app.js already use */
  --bg: var(--deep);
  --bg-2: var(--navy);
  --card: #17181D;
  --card-edge: var(--line);
  --text: var(--ink);
  --muted: var(--ink-dim);
  --green: var(--ok);
  --red: #E4553D;
  --amber: var(--gold);
  --gold-bright: var(--g-lite);
  --radius: 18px;
  --display: Sora, system-ui, sans-serif;
  --body: "DM Sans", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--deep);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
h1, h2, h3 { font-family: var(--display); font-weight: 800; letter-spacing: -.02em; line-height: 1.08; color: var(--ink); }
.wrap { width: min(1180px, 92vw); margin-inline: auto; }
.hidden { display: none !important; }
/* #cc .hl — the blue highlight box on the headline */
.gold {
  color: #FFFFFF;
  background: linear-gradient(95deg, #59A9FF 0%, #3B8EF7 55%, #2B7FFF 100%);
  padding: .05em .28em .1em; border-radius: .08em;
  box-shadow: 0 0 34px -4px rgba(89, 169, 255, .85), 0 0 90px -18px rgba(43, 127, 255, .75);
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}

/* banners (demo / stale) — the family's .note voice */
.banner { text-align: center; padding: 10px 16px; font-family: var(--display); font-weight: 700; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; }
.banner.demo { background: rgba(227, 180, 76, .10); color: var(--gold); border-bottom: 1px solid rgba(227, 180, 76, .3); }
.banner.stale { background: rgba(27, 92, 255, .10); color: #8FB4FF; border-bottom: 1px solid rgba(60, 120, 255, .35); }

/* header — dark topbar with the #cc .logo wordmark treatment */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(7, 11, 22, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(180deg, var(--g-lite) -14%, var(--gold) 48%, var(--g-deep) 116%);
  color: #20180A; display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 15px; letter-spacing: .04em;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .5), 0 0 22px -2px rgba(227, 180, 76, .55);
}
.brand-name { font-family: var(--display); font-weight: 800; font-size: .95rem; letter-spacing: .22em; text-transform: uppercase; line-height: 1; color: var(--ink); }
.brand-name .gold-word { color: var(--gold); }
.brand-sub { font-family: var(--display); font-weight: 700; font-size: .62rem; color: var(--gold); text-transform: uppercase; letter-spacing: .2em; margin-top: 5px; }
.header-nav { display: flex; align-items: center; gap: 22px; }
.header-nav a { color: var(--ink-dim); text-decoration: none; font-family: var(--display); font-weight: 700; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.header-nav a:hover { color: var(--ink); }
/* #cc .cta */
.cart-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  background: var(--cta); color: #fff; font-family: var(--display); font-weight: 700;
  font-size: .82rem; letter-spacing: .02em; text-transform: uppercase;
  padding: .75rem 1.3rem; border-radius: 999px; border: 0; cursor: pointer;
  box-shadow: 0 12px 30px -10px rgba(27, 92, 255, .75); transition: transform .15s, background .15s;
}
.cart-btn:hover { background: var(--cta-hi); transform: translateY(-2px); }
.cart-count { background: #fff; color: var(--cta); border-radius: 999px; min-width: 22px; height: 22px; display: grid; place-items: center; font-family: var(--body); font-size: 12px; font-weight: 700; padding: 0 6px; }

/* hero — #cc .hero: navy radial ground, gold eyebrow, Sora uppercase headline with the .hl box */
.hero {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.6rem, 6vw, 4rem);
  text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(120% 90% at 78% 0%, var(--hero-a) 0%, var(--hero-b) 55%, var(--hero-c) 100%);
  border-bottom: 1px solid var(--line);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-kicker { font-family: var(--display); font-weight: 700; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); display: block; }
.hero h1 { font-size: clamp(2.3rem, 6.4vw, 4.75rem); margin: 1rem 0 1.4rem; line-height: 1.06; text-transform: uppercase; letter-spacing: -.02em; text-wrap: balance; }
.hero-sub { color: var(--ink-dim); max-width: 42em; font-size: clamp(1rem, 1.5vw, 1.1rem); margin: 0 auto 1.6rem; line-height: 1.65; }
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
/* #cc .pill */
.chip {
  display: inline-block; background: #EAF0FF; color: var(--cta); font-family: var(--display);
  font-weight: 700; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .45rem .9rem; border-radius: 999px;
}

/* catalog */
.catalog { padding: clamp(2.6rem, 6vw, 4.4rem) 0 2rem; }
.catalog-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 1.4rem; }
.catalog-head h2 { font-size: clamp(1.4rem, 3.4vw, 2.1rem); text-transform: uppercase; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; }
/* intake form-skin input */
.filters input, .filters select, .qty-select, #checkout-form input, #checkout-form textarea {
  background: #141519; border: 1px solid rgba(255, 255, 255, .13); border-radius: 11px;
  color: var(--ink); font-family: var(--body); font-size: 1rem; font-weight: 400;
  padding: .82rem .95rem; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.filters input::placeholder, #checkout-form input::placeholder, #checkout-form textarea::placeholder { color: #5D6A82; opacity: 1; }
.filters input:focus, .filters select:focus, .qty-select:focus, #checkout-form input:focus, #checkout-form textarea:focus {
  outline: none; background: #171922; border: 1px solid var(--cta-hi); box-shadow: 0 0 0 3px rgba(27, 92, 255, .26);
}
.filters select, .qty-select {
  appearance: none; -webkit-appearance: none; padding-right: 2.4rem;
  background-image: linear-gradient(45deg, transparent 50%, #7C8AA6 50%), linear-gradient(135deg, #7C8AA6 50%, transparent 50%);
  background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat;
}
.filters input { width: 200px; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.loading, .empty { color: var(--ink-mute); padding: 3rem 0; text-align: center; grid-column: 1 / -1; font-family: var(--display); font-weight: 700; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }

/* product card — _delivery-shared .card surface; hover/in-cart borrow the programs .plan glow */
.card {
  background: linear-gradient(180deg, #1C1D22, #17181D);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.3rem, 3.5vw, 1.6rem); display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 24px 60px -34px #000;
  transition: transform .3s cubic-bezier(.22, .61, .36, 1), border-color .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-5px); border-color: var(--a); box-shadow: 0 0 10px -1px var(--a-glow), 0 0 30px 0 rgba(91, 144, 255, .35), 0 30px 60px -34px #000; }
.card-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.card-price .per { display: block; font-family: var(--display); font-weight: 700; font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); -webkit-text-fill-color: var(--ink-mute); filter: none; margin-top: .3rem; }
.slots-pill { font-family: var(--display); font-weight: 800; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; padding: .5rem .9rem; border-radius: 999px; background: rgba(37, 165, 91, .12); border: 1px solid rgba(37, 165, 91, .45); color: #3FBF6E; white-space: nowrap; }
.slots-pill.low { color: #20180A; background: linear-gradient(180deg, var(--g-lite) -10%, var(--gold) 50%, #B98F2C 110%); border-color: transparent; box-shadow: 0 0 22px -2px var(--g-glow); }
.card-bank { font-family: var(--display); font-weight: 800; font-size: 1.25rem; text-transform: uppercase; letter-spacing: -.01em; line-height: 1.1; }
/* programs .plan__total — gradient price with glow */
.card-price {
  font-family: var(--display); font-weight: 800; font-size: 2.1rem; line-height: 1; letter-spacing: -.035em; white-space: nowrap;
  background: linear-gradient(180deg, var(--g-lite) 0%, var(--gold) 46%, var(--g-deep) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, .55)) drop-shadow(0 0 14px rgba(227, 180, 76, .45));
}
.card-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.stat { background: rgba(255, 255, 255, .04); border: 1px solid var(--line); border-radius: 12px; padding: .6rem .7rem; }
.stat-label { font-family: var(--display); font-weight: 700; font-size: .62rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .16em; }
.stat-value { font-family: var(--display); font-weight: 800; font-size: 1.05rem; margin-top: 3px; line-height: 1.1; }
.card-deadline { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: .88rem; color: var(--ink-dim); }
.card-deadline strong { color: var(--ink); font-weight: 700; }
/* programs .plan__flag / .pill */
.deadline-pill { border-radius: 999px; padding: .4rem .8rem; font-family: var(--display); font-weight: 800; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }
.deadline-pill.ok { background: #EAF0FF; color: var(--cta); }
.deadline-pill.soon { color: #20180A; background: linear-gradient(180deg, var(--g-lite) -10%, var(--gold) 50%, #B98F2C 110%); box-shadow: 0 0 22px -2px var(--g-glow); }
.card-actions { display: flex; gap: 10px; align-items: center; }
.qty-select { padding: .72rem 2.4rem .72rem .85rem; font-size: .92rem; }
/* secondary button = the family's outlined pill (book-call / ghost) */
.btn-add {
  flex: 1; background: transparent; border: 1px solid rgba(255, 255, 255, .22); color: var(--ink);
  border-radius: 999px; padding: .8rem 1rem; cursor: pointer;
  font-family: var(--display); font-weight: 700; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase;
  transition: background .15s, border-color .15s, color .15s;
}
.btn-add:hover { border-color: var(--cta-hi); color: #fff; background: rgba(27, 92, 255, .14); }
.btn-add.in-cart { background: var(--cta); border-color: var(--cta); color: #fff; box-shadow: 0 12px 30px -10px rgba(27, 92, 255, .75); }

/* how it works — _delivery-shared .card grid with the gold numbered discs (.tl li::before) */
.how { background: linear-gradient(180deg, #0F1015, var(--deep)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(2.6rem, 6vw, 4.4rem) 0; margin-top: 2rem; text-align: center; }
.how h2, .faq h2 { font-size: clamp(1.4rem, 3.4vw, 2.1rem); text-transform: uppercase; margin-bottom: clamp(1.4rem, 3vw, 2rem); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; text-align: left; }
.step { background: linear-gradient(180deg, #1C1D22, #17181D); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.3rem, 3.5vw, 2rem); box-shadow: 0 24px 60px -34px #000; }
.step-num {
  width: 2.3rem; height: 2.3rem; border-radius: 50%; display: grid; place-items: center; margin-bottom: 14px;
  font-family: var(--display); font-weight: 800; font-size: .75rem; color: #20180A;
  background: linear-gradient(180deg, var(--g-lite) -14%, var(--gold) 48%, var(--g-deep) 116%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .5);
}
.step h3 { font-size: clamp(1.1rem, 2.4vw, 1.4rem); margin-bottom: .6rem; }
.step p { color: var(--ink-dim); font-size: .95rem; line-height: 1.72; }

/* faq — #pp details */
.faq { padding: clamp(2.6rem, 6vw, 4.4rem) 0; }
.faq details {
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
  border: 1px solid var(--line); border-radius: 15px; overflow: hidden; margin-bottom: .7rem; transition: border-color .25s;
}
.faq details[open] { border-color: rgba(60, 120, 255, .45); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: .8rem; padding: 1.05rem 1.15rem; font-family: var(--display); font-weight: 700; font-size: clamp(.95rem, 1.7vw, 1.05rem); color: #fff; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-weight: 700; font-size: 1.2rem; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--ink-dim); padding: 0 1.15rem 1.1rem; max-width: 62ch; font-size: .95rem; line-height: 1.72; }

/* footer — _delivery-shared .foot */
.site-footer { background: #0D0E11; padding: 2.4rem 0 3rem; margin-top: 1.5rem; font-size: .8rem; color: var(--ink-mute); border-top: 1px solid var(--line); line-height: 1.65; text-align: center; }
.site-footer p { max-width: 58rem; margin-inline: auto; }
.site-footer strong { color: var(--ink); font-family: var(--display); font-weight: 800; letter-spacing: .22em; text-transform: uppercase; font-size: .8rem; }
.site-footer .fine { margin-top: 8px; }

/* cart drawer — a .card surface, blue-outlined like an active plan */
.overlay { position: fixed; inset: 0; background: rgba(4, 6, 12, .78); z-index: 50; opacity: 0; pointer-events: none; transition: opacity .2s; }
.overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(430px, 100vw); z-index: 60;
  background: linear-gradient(180deg, #1C1D22, #141519); border-left: 1px solid rgba(91, 144, 255, .45);
  box-shadow: -10px 0 40px -10px rgba(27, 92, 255, .35);
  transform: translateX(100%); transition: transform .25s ease; display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-size: 1.3rem; text-transform: uppercase; }
.icon-btn { background: none; border: 0; color: var(--ink-mute); font-size: 26px; cursor: pointer; line-height: 1; }
.icon-btn:hover { color: var(--ink); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 22px; display: flex; flex-direction: column; gap: 12px; }
.cart-empty { color: var(--ink-mute); text-align: center; padding: 40px 0; font-size: .95rem; }
.cart-item { background: rgba(255, 255, 255, .04); border: 1px solid var(--line); border-radius: 14px; padding: 12px; display: flex; flex-direction: column; gap: 12px; }
.cart-item-row { display: flex; justify-content: space-between; gap: 10px; align-items: flex-start; }
.cart-item .ccface { border-radius: 11px; }
.cart-item-meta b { color: var(--ink); font-weight: 700; }
.cart-item-info { font-size: .92rem; }
.cart-item-bank { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: .95rem; }
.cart-item-meta { color: var(--ink-dim); font-size: .8rem; }
.cart-item-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.cart-item-price { font-family: var(--display); font-weight: 800; color: var(--gold); }
.link-remove { background: none; border: 0; color: var(--ink-mute); font-family: var(--display); font-weight: 700; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; padding: 0; }
.link-remove:hover { color: var(--red); }
.cart-foot { border-top: 1px solid var(--line); padding: 18px 22px 24px; }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--display); font-weight: 700; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 14px; }
.cart-total-row strong { font-size: 1.9rem; letter-spacing: -.03em; color: var(--ink); }
.cart-note { color: var(--ink-mute); font-size: .78rem; margin-top: 12px; text-align: center; line-height: 1.5; }
/* primary CTA — #cc .cta (blue pill) */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  background: var(--cta); color: #fff; font-family: var(--display); font-weight: 700;
  font-size: clamp(.9rem, 2.2vw, 1rem); letter-spacing: .02em; text-transform: uppercase;
  padding: 1.05rem 1.6rem; border-radius: 999px; border: 0; cursor: pointer;
  box-shadow: 0 12px 30px -10px rgba(27, 92, 255, .75); transition: transform .15s, background .15s;
}
.btn-gold::after { content: "\2192"; font-weight: 700; }
.btn-gold:hover { background: var(--cta-hi); transform: translateY(-2px); }
.btn-gold:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-block { width: 100%; }

/* checkout modal — the intake form card (#ip form skin + .card surface) */
.modal { position: fixed; inset: 0; z-index: 70; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(4, 6, 12, .82); }
.modal.open { display: flex; }
.modal-card {
  background: linear-gradient(180deg, #1C1D22, #17181D); border: 1px solid rgba(91, 144, 255, .45); border-radius: 22px;
  width: min(560px, 100%); max-height: 92vh; overflow-y: auto; padding: clamp(1.4rem, 4vw, 2.2rem); position: relative;
  box-shadow: 0 0 30px 0 rgba(91, 144, 255, .25), 0 30px 60px -34px #000;
}
.modal-close { position: absolute; top: 16px; right: 18px; }
.modal-card h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); text-transform: uppercase; margin-bottom: 6px; }
.modal-sub { color: var(--ink-dim); font-size: .95rem; margin-bottom: 1.4rem; line-height: 1.65; }
#checkout-form label { display: block; font-family: var(--body); font-size: .86rem; font-weight: 500; color: var(--ink-dim); margin-bottom: 14px; line-height: 1.45; }
#checkout-form .opt { color: var(--ink-mute); }
#checkout-form input, #checkout-form textarea { width: 100%; margin-top: .42rem; }
.order-summary { background: rgba(27, 92, 255, .10); border: 1px solid rgba(60, 120, 255, .35); border-radius: 12px; padding: 1rem 1.1rem; font-size: .9rem; margin-bottom: 18px; color: #C9D4E8; }
.order-summary .row { display: flex; justify-content: space-between; padding: 3px 0; }
.order-summary .row.total { border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 8px; padding-top: 9px; color: #fff; font-family: var(--display); font-weight: 800; }
.form-error { color: #FF8A73; font-size: .9rem; margin-bottom: 12px; font-weight: 500; }

/* success — gold disc like the timeline numerals */
.success-icon {
  width: 62px; height: 62px; border-radius: 50%; margin: 6px auto 16px;
  background: linear-gradient(180deg, var(--g-lite) -14%, var(--gold) 48%, var(--g-deep) 116%); color: #20180A;
  display: grid; place-items: center; font-size: 30px; font-weight: 800;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .5), 0 0 26px 0 rgba(227, 180, 76, .6);
}
#checkout-success-view { text-align: center; }
.success-instructions { background: rgba(27, 92, 255, .10); border: 1px solid rgba(60, 120, 255, .35); border-radius: 12px; padding: 1rem 1.1rem; font-size: .9rem; color: #C9D4E8; margin: 16px 0 20px; text-align: left; line-height: 1.65; }

@media (prefers-reduced-motion: reduce) { .card, .btn-gold, .cart-btn { transition: none; } .card:hover, .btn-gold:hover, .cart-btn:hover { transform: none; } }

@media (max-width: 640px) {
  .header-nav a { display: none; }
  .brand-sub { display: none; }
  .brand-name { font-size: .8rem; letter-spacing: .16em; }
  .catalog-head { flex-direction: column; align-items: stretch; }
  .filters input { flex: 1; width: auto; }
  .grid { grid-template-columns: 1fr; }
  .card-stats { gap: 6px; }
}

/* ---------------------------------------------------------------------------
   Credit-card face — extends #pp .ccard (gradient tile + .chip + gloss ::after)
   into a full card at real proportions. Bank names are text wordmarks; palettes
   echo each issuer's actual card art. No logos, no network marks.
   --------------------------------------------------------------------------- */
.ccface {
  position: relative; aspect-ratio: 1.586 / 1; border-radius: 14px; overflow: hidden;
  padding: 7% 7% 6%; display: flex; flex-direction: column; justify-content: space-between;
  color: #fff; text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), inset 0 -1px 0 rgba(0, 0, 0, .45), 0 14px 30px -14px rgba(0, 0, 0, .9);
  background: linear-gradient(135deg, #2A4874 0%, #152945 52%, #0A1729 100%);
}
.ccface::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(107deg, rgba(255, 255, 255, .16) 0 18%, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, .07) 78%, rgba(255, 255, 255, 0) 100%); }
.ccface > * { position: relative; z-index: 1; }
.ccface .cc-row { display: flex; justify-content: space-between; align-items: flex-start; gap: .5rem; }
.ccface .cc-bank { font-family: var(--display); font-weight: 800; font-size: clamp(1.15rem, 1.6vw + .6rem, 1.6rem); letter-spacing: .04em; text-transform: uppercase; text-align: right; line-height: 1.05; text-shadow: 0 1px 2px rgba(0, 0, 0, .35); }
.ccface .cc-tier { display: block; font-family: var(--display); font-weight: 700; font-size: .55rem; letter-spacing: .22em; opacity: .8; margin-top: .2rem; }
/* #pp .chip, with contact lines */
.ccface .chip { width: 34px; height: 25px; border-radius: 5px; flex: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 1px 2px rgba(0, 0, 0, .4);
  background: linear-gradient(90deg, transparent 46%, rgba(0, 0, 0, .28) 46% 54%, transparent 54%), linear-gradient(0deg, transparent 46%, rgba(0, 0, 0, .28) 46% 54%, transparent 54%), linear-gradient(135deg, #F3DA92, #C79B33 55%, #9A7420); }
.ccface .cc-nfc { font-size: 1rem; line-height: 1; opacity: .85; margin-left: .55rem; transform: rotate(90deg); display: inline-block; letter-spacing: -.1em; }
.ccface .cc-chiprow { display: flex; align-items: center; }
/* embossed figure — the credit limit sits where the number would */
.ccface .cc-num { font-family: var(--display); font-weight: 700; font-size: clamp(1.15rem, 1.6vw + .5rem, 1.6rem); letter-spacing: .12em; line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .35), 0 -1px 0 rgba(0, 0, 0, .55), 0 2px 3px rgba(0, 0, 0, .35); font-variant-numeric: tabular-nums; }
.ccface .cc-num small { display: block; font-size: .62rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; opacity: .85; margin-bottom: .3rem; }
.ccface .cc-num { font-size: clamp(1.4rem, 2vw + .5rem, 1.9rem); }
.ccface .cc-foot { display: flex; justify-content: space-between; align-items: flex-end; gap: .5rem; font-family: var(--display); font-weight: 700; font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; opacity: .9; }
.ccface .cc-foot span { display: block; }
.ccface .cc-foot small { display: block; font-weight: 500; font-size: .5rem; letter-spacing: .14em; opacity: .7; margin-bottom: .15rem; }
.ccface .cc-foot b { text-shadow: 0 1px 0 rgba(255, 255, 255, .3), 0 -1px 0 rgba(0, 0, 0, .5); font-weight: 700; letter-spacing: .1em; }
/* light card faces */
.ccface.is-light { color: #141519; }
.ccface.is-light .cc-bank { text-shadow: none; }
.ccface.is-light .cc-num { text-shadow: 0 1px 0 rgba(255, 255, 255, .8), 0 -1px 0 rgba(0, 0, 0, .18); }
.ccface.is-light .cc-foot b { text-shadow: 0 1px 0 rgba(255, 255, 255, .8), 0 -1px 0 rgba(0, 0, 0, .15); }

/* issuer palettes — after their real card art */
.cc-capital-one { background:
  repeating-linear-gradient(100deg, transparent 0 9px, rgba(56, 150, 255, .28) 9px 10px),
  radial-gradient(120% 80% at 80% 20%, #12305F 0%, #0A1C3F 55%, #050E24 100%); }
.cc-american-express { background:
  radial-gradient(130% 100% at 20% 0%, #F4D7CF 0%, #DDA79B 45%, #B97F73 100%); }
.cc-chase { background:
  linear-gradient(115deg, transparent 44%, rgba(120, 200, 255, .55) 44.5%, transparent 45.2%),
  linear-gradient(80deg, transparent 58%, rgba(120, 200, 255, .45) 58.5%, transparent 59.2%),
  linear-gradient(135deg, #0F2A5E 0%, #071838 55%, #0A2250 100%); }
.cc-barclays { background: radial-gradient(90% 120% at 85% 80%, #7A3FC9 0%, #5B2A9E 45%, #3E1C73 100%); }
.cc-citi { background:
  repeating-linear-gradient(15deg, transparent 0 12px, rgba(40, 46, 60, .22) 12px 13px),
  linear-gradient(135deg, #F5F7FB 0%, #DFE4EE 55%, #C6CDDA 100%); }
.cc-wells-fargo { background:
  linear-gradient(120deg, #5A5D63 0%, #3A3C41 34%, #B3161B 34.5%, #C8171D 58%, #F2C21A 58.5%, #F2C21A 60%, #7A7C82 60.5%, #4D4F55 100%); }
.cc-discover { background:
  radial-gradient(60% 70% at 20% 30%, rgba(255, 170, 120, .9), transparent 70%),
  radial-gradient(60% 70% at 80% 70%, rgba(170, 140, 255, .9), transparent 70%),
  radial-gradient(70% 70% at 60% 20%, rgba(120, 200, 255, .9), transparent 70%),
  linear-gradient(135deg, #C9D8F0, #E9C8F5); }
.cc-td-bank { background:
  linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, .06) 40%, rgba(255, 255, 255, .06) 70%, transparent 70%),
  linear-gradient(135deg, #0F5A2E 0%, #0A3F20 55%, #072D17 100%); }
.cc-navy-federal { background:
  repeating-linear-gradient(0deg, transparent 0 7px, rgba(90, 170, 255, .16) 7px 8px),
  repeating-linear-gradient(90deg, transparent 0 7px, rgba(90, 170, 255, .16) 7px 8px),
  linear-gradient(135deg, #1B5CA8 0%, #0D3A73 52%, #072448 100%); }
.cc-usaa { background:
  radial-gradient(70% 90% at 30% 60%, rgba(120, 170, 255, .28), transparent 70%),
  linear-gradient(135deg, #16386B 0%, #0B2247 52%, #06152E 100%); }
.cc-bank-of-america { background: linear-gradient(135deg, #C8102E 0%, #9A0B22 55%, #6B0716 100%); }
.cc-us-bank { background: linear-gradient(135deg, #1F3F8F 0%, #12275E 55%, #0B1A40 100%); }
.cc-penfed { background: linear-gradient(135deg, #2A4874 0%, #152945 52%, #0A1729 100%); }
.cc-truist { background: linear-gradient(135deg, #523079 0%, #2E1A47 52%, #1B0F2B 100%); }
.cc-pnc { background: linear-gradient(135deg, #F58025 0%, #C95E12 52%, #7F3A08 100%); }
.cc-sofi { background: linear-gradient(135deg, #2FB4C2 0%, #1A7F8B 52%, #0E4C54 100%); }
.cc-goldman-sachs { background: linear-gradient(135deg, #FCFCFE 0%, #E7E7EB 52%, #CFCFD6 100%); }
.cc-robinhood { background: linear-gradient(135deg, #1B1B1E 0%, #0A0A0C 55%, #151518 100%); }
.cc-fnbo { background: linear-gradient(135deg, #164F80 0%, #0A3055 52%, #051C33 100%); }
.cc-synchrony, .cc-elan-financial, .cc-alliant, .cc-citizens-bank { background: linear-gradient(135deg, #557595 0%, #374F6B 52%, #22334A 100%); }

/* Amex disclosure — limit reports, age does not. Loud on purpose (dispute prevention). */
.ccface .cc-notice { font-family: var(--display); font-weight: 800; font-size: clamp(.8rem, 1.1vw + .35rem, 1rem); line-height: 1.3; letter-spacing: .02em; text-transform: uppercase;
  color: #fff; background: rgba(20, 21, 25, .82); border: 1px solid rgba(255, 255, 255, .25); border-radius: 10px; padding: .55rem .7rem; text-shadow: none; }
.ccface .cc-notice u { text-decoration: underline; text-underline-offset: 2px; color: var(--gold); }
.cart-item-notice { margin-top: .35rem; font-family: var(--display); font-weight: 700; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.order-summary .row-note { display: block; font-style: normal; font-family: var(--display); font-weight: 700; font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }

/* bundle & save — cart upsell */
.cart-upsell { padding: 4px 22px 16px; }
.cart-upsell:empty { display: none; }
.upsell-head { background: rgba(27, 92, 255, .10); border: 1px solid rgba(60, 120, 255, .35); border-radius: 12px; padding: .8rem 1rem; margin-bottom: 12px; }
.upsell-head b { display: block; font-family: var(--display); font-weight: 800; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: #8FB4FF; margin-bottom: .3rem; }
.upsell-head span { color: #C9D4E8; font-size: .9rem; line-height: 1.5; }
.upsell-head em { font-style: normal; color: var(--gold); font-weight: 700; }
.upsell-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.upsell-item { background: rgba(255, 255, 255, .04); border: 1px solid var(--line); border-radius: 12px; padding: 8px; display: flex; flex-direction: column; gap: 8px; }
.upsell-item .ccface { border-radius: 9px; padding: 6% 7% 5%; }
.upsell-item .ccface .cc-bank { font-size: .72rem; }
.upsell-item .ccface .cc-tier, .upsell-item .ccface .cc-foot small { font-size: .42rem; }
.upsell-item .ccface .cc-num { font-size: .95rem; }
.upsell-item .ccface .cc-num small { font-size: .45rem; margin-bottom: .15rem; }
.upsell-item .ccface .cc-foot { font-size: .45rem; }
.upsell-item .ccface .chip { width: 22px; height: 16px; }
.upsell-item .ccface .cc-nfc { font-size: .7rem; margin-left: .3rem; }
.upsell-item .ccface .cc-notice { font-size: .5rem; padding: .3rem .4rem; }
.upsell-row { display: flex; justify-content: space-between; align-items: center; gap: 6px; }
.upsell-price { font-family: var(--display); font-weight: 800; color: var(--gold); font-size: 1rem; }
.btn-add--sm { flex: none; padding: .5rem .8rem; font-size: .68rem; }
.cart-total-row.sub, .cart-total-row.discount { margin-bottom: 8px; }
.cart-total-row.sub span:last-child { color: var(--ink-dim); font-family: var(--body); font-weight: 600; letter-spacing: 0; text-transform: none; font-size: .95rem; }
.cart-total-row.discount span:last-child { color: #3FBF6E; font-family: var(--body); font-weight: 700; letter-spacing: 0; text-transform: none; font-size: .95rem; }
.order-summary .row.discount { color: #3FBF6E; font-weight: 700; }

/* sale effect — compare-at price in gold, red X through it, real price in green */
.card { position: relative; }
.card-price.on-sale { display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; }
.card-price .was {
  position: relative; display: inline-block; font-size: 1.35rem; opacity: .95;
  background: linear-gradient(180deg, var(--g-lite) 0%, var(--gold) 46%, var(--g-deep) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.card-price .was::before, .card-price .was::after {
  content: ""; position: absolute; left: -6%; right: -6%; top: 50%; height: 3px; border-radius: 2px;
  background: #E4321B; box-shadow: 0 0 8px rgba(228, 50, 27, .7);
}
.card-price .was::before { transform: rotate(-18deg); }
.card-price .was::after { transform: rotate(18deg); }
.card-price .now {
  background: linear-gradient(180deg, #7CF0A8 0%, #37C077 50%, #1B7A47 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, .55)) drop-shadow(0 0 14px rgba(55, 192, 119, .45));
}
.card-price.on-sale .per { flex-basis: 100%; }
.sale-ribbon {
  position: absolute; top: 28px; left: 14px; z-index: 2;
  font-family: var(--display); font-weight: 800; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: #fff; background: linear-gradient(135deg, #FF5A3C, #E4321B 60%, #B3161B); padding: .4rem .7rem; border-radius: 999px;
  box-shadow: 0 6px 18px -6px rgba(228, 50, 27, .9), inset 0 1px 0 rgba(255, 255, 255, .35);
}

/* card face: age as prominent as the limit */
.ccface .cc-foot { align-items: flex-end; }
.ccface .cc-foot small { font-size: .55rem; letter-spacing: .18em; opacity: .8; margin-bottom: .2rem; }
.ccface .cc-foot b { font-size: .95rem; letter-spacing: .06em; }
.ccface .cc-age { text-align: right; }
.ccface .cc-age small { font-size: .6rem; font-weight: 800; letter-spacing: .22em; opacity: .9; }
.ccface .cc-age b { display: block; font-size: clamp(1.4rem, 2vw + .5rem, 1.9rem); line-height: 1; letter-spacing: .02em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .35), 0 -1px 0 rgba(0, 0, 0, .55), 0 2px 3px rgba(0, 0, 0, .35); }
.ccface.is-light .cc-age b { text-shadow: 0 1px 0 rgba(255, 255, 255, .8), 0 -1px 0 rgba(0, 0, 0, .18); }
.upsell-item .ccface .cc-age b { font-size: .95rem; }
.cart-item .ccface .cc-age b { font-size: 1.3rem; }

/* product card bottom: everything centered */
.card-top { justify-content: center; text-align: center; margin-top: 4px; }
.card-price.on-sale { justify-content: center; }
.card-price .per { text-align: center; }
.card-dates { text-align: center; font-family: var(--display); font-weight: 800; font-size: clamp(.95rem, 1.2vw + .4rem, 1.15rem); letter-spacing: .02em; text-transform: uppercase; color: #fff; line-height: 1.6; }
.card-dates b { color: #fff; margin-left: .35em;
  background: linear-gradient(95deg, #59A9FF 0%, #3B8EF7 55%, #2B7FFF 100%);
  padding: .05em .28em .1em; border-radius: .08em;
  box-shadow: 0 0 34px -4px rgba(89, 169, 255, .85), 0 0 90px -18px rgba(43, 127, 255, .75);
  -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.card-dates i { font-style: normal; color: var(--gold); margin: 0 .5rem; }
.card-pills { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.deadline-pill { padding: .5rem .9rem; }

/* 5 or fewer spots: red, pulsing */
.slots-pill.urgent { color: #fff; background: linear-gradient(135deg, #FF5A3C, #E4321B 60%, #B3161B); border-color: transparent;
  box-shadow: 0 0 0 0 rgba(228, 50, 27, .7); animation: slots-flash 1.1s ease-in-out infinite; }
@keyframes slots-flash {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(228, 50, 27, .7); }
  50% { opacity: .55; box-shadow: 0 0 0 7px rgba(228, 50, 27, 0); }
}
@media (prefers-reduced-motion: reduce) { .slots-pill.urgent { animation: none; } }

/* days-left pill: faded clock behind the text */
.card-pills .deadline-pill { position: relative; overflow: hidden; padding-left: 2.1rem; }
.card-pills .deadline-pill::before { content: "⏰️"; position: absolute; left: .5rem; top: 50%; transform: translateY(-50%);
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif; font-weight: 400;
  font-size: 1.2rem; line-height: 1; opacity: .3; pointer-events: none; }
.card-pills .deadline-pill.soon::before { opacity: .4; }

/* product card actions: spots picker stacked above a gold Add to cart */
.card .card-actions { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 4px; }
.qty-wrap { position: relative; display: flex; align-items: center; width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02)); border: 1px solid rgba(255, 255, 255, .16); border-radius: 999px;
  transition: border-color .18s, box-shadow .18s; }
.qty-wrap:hover, .qty-wrap:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(227, 180, 76, .18); }
.qty-label { position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%); pointer-events: none;
  font-family: var(--display); font-weight: 800; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.card .qty-select { width: 100%; background: transparent; border: 0; box-shadow: none; border-radius: 999px;
  padding: .85rem 2.6rem .85rem 5rem; font-family: var(--display); font-weight: 700; font-size: .95rem; color: #fff; text-align: center;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 22px) 55%, calc(100% - 16px) 55%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; cursor: pointer; }
.card .qty-select:focus { outline: none; box-shadow: none; border: 0; background-color: transparent; }
.card .qty-select option { background: #1C1D22; color: #fff; }
.card .btn-add {
  width: 100%; border: 0; color: #20180A;
  background: linear-gradient(180deg, #FBE6AE -10%, #E3B44C 50%, #B98F2C 110%);
  font-size: .95rem; letter-spacing: .06em; padding: 1rem 1.2rem;
  box-shadow: 0 14px 34px -12px rgba(227, 180, 76, .9), inset 0 1px 0 rgba(255, 255, 255, .45), inset 0 -1px 0 rgba(0, 0, 0, .25);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  transition: transform .16s, filter .16s, box-shadow .16s; }
.card .btn-add:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 18px 40px -12px rgba(227, 180, 76, 1), inset 0 1px 0 rgba(255, 255, 255, .5); color: #20180A; }
.card .btn-add .arw { transition: transform .16s; }
.card .btn-add:hover .arw { transform: translateX(4px); }
.card .btn-add.in-cart { background: var(--cta); color: #fff; box-shadow: 0 12px 30px -10px rgba(27, 92, 255, .75); }
.card .btn-add.in-cart:hover { color: #fff; filter: none; background: var(--cta-hi); }
.qty-head { text-align: center; font-family: var(--display); font-weight: 800; font-size: clamp(.95rem, 1.2vw + .4rem, 1.15rem); letter-spacing: .02em; text-transform: uppercase; color: #fff; margin-top: 2px; }
.card .qty-select { padding-left: 4.4rem; font-size: .88rem; }
.qty-head b { color: #fff; margin-left: .35em; background: linear-gradient(95deg, #59A9FF 0%, #3B8EF7 55%, #2B7FFF 100%);
  padding: .05em .28em .1em; border-radius: .08em; box-shadow: 0 0 34px -4px rgba(89, 169, 255, .85), 0 0 90px -18px rgba(43, 127, 255, .75);
  -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.card .qty-select { padding-left: 2.6rem; }

/* product card actions: the family's light "paper" section (#pp .incl) with its torn seam on top */
.card { overflow: hidden; }
.card .card-actions { position: relative; margin: 14px calc(-1 * clamp(1.3rem, 3.5vw, 1.6rem)) calc(-1 * clamp(1.3rem, 3.5vw, 1.6rem)); padding: 30px clamp(1rem, 3vw, 1.3rem) clamp(1rem, 3vw, 1.3rem);
  background: linear-gradient(#F5F8FF, #E4EBF8); color: #0B1223; gap: 8px; }

.card .qty-head { color: #0B1223; font-size: 1.05rem; margin: 0; }
.card .qty-head b { color: #fff; }
.card .qty-wrap { background: #fff; border: 1.5px solid #C9D3E6; box-shadow: 0 4px 14px -8px rgba(11, 18, 35, .35); }
.card .qty-wrap:hover, .card .qty-wrap:focus-within { border-color: var(--cta); box-shadow: 0 0 0 3px rgba(27, 92, 255, .18); }
.card .qty-select { color: #0B1223; font-size: 1.1rem; padding: .75rem 2.6rem .75rem 2.6rem;
  background-image: linear-gradient(45deg, transparent 50%, var(--cta) 50%), linear-gradient(135deg, var(--cta) 50%, transparent 50%); }
.card .qty-select option { background: #fff; color: #0B1223; }
.card .btn-add { font-size: 1.05rem; padding: 1.05rem 1.2rem; box-shadow: 0 14px 30px -12px rgba(154, 116, 32, .8), inset 0 1px 0 rgba(255, 255, 255, .5), inset 0 -1px 0 rgba(0, 0, 0, .2); }

/* smooth torn edge for the card's paper section */
.card .card-actions::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 26px; z-index: 1; pointer-events: none;
  background-repeat: no-repeat; background-size: 100% 26px; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='26' viewBox='0 0 600 26' preserveAspectRatio='none'><path d='M0 12.9 Q 0.0 12.9 15.8 14.8 Q 31.6 16.8 46.5 16.1 Q 61.4 15.4 79.7 12.6 Q 98.1 9.7 118.2 9.6 Q 138.3 9.4 157.5 9.6 Q 176.7 9.8 191.8 12.0 Q 206.9 14.1 230.8 12.3 Q 254.7 10.5 271.4 13.5 Q 288.1 16.5 313.5 16.2 Q 338.8 15.9 357.6 18.3 Q 376.4 20.7 390.9 20.0 Q 405.5 19.3 423.0 15.0 Q 440.4 10.7 455.8 11.7 Q 471.3 12.7 495.1 11.9 Q 518.8 11.2 539.8 13.9 Q 560.8 16.7 579.3 16.1 Q 597.7 15.6 598.9 13.5 L600 11.5 L600 26 L0 26 Z' fill='rgba(11,18,35,0.28)'/><path d='M0 11.1 Q 0.0 11.1 15.8 13.0 Q 31.6 15.0 46.5 14.3 Q 61.4 13.6 79.7 10.8 Q 98.1 7.9 118.2 7.8 Q 138.3 7.6 157.5 7.8 Q 176.7 8.0 191.8 10.2 Q 206.9 12.3 230.8 10.5 Q 254.7 8.7 271.4 11.7 Q 288.1 14.7 313.5 14.4 Q 338.8 14.1 357.6 16.5 Q 376.4 18.9 390.9 18.2 Q 405.5 17.5 423.0 13.2 Q 440.4 8.9 455.8 9.9 Q 471.3 10.9 495.1 10.1 Q 518.8 9.4 539.8 12.1 Q 560.8 14.9 579.3 14.3 Q 597.7 13.8 598.9 11.7 L600 9.7 L600 26 L0 26 Z' fill='%23C9D3E6'/><path d='M0 9.9 Q 0.0 9.9 15.8 11.8 Q 31.6 13.8 46.5 13.1 Q 61.4 12.4 79.7 9.6 Q 98.1 6.7 118.2 6.6 Q 138.3 6.4 157.5 6.6 Q 176.7 6.8 191.8 9.0 Q 206.9 11.1 230.8 9.3 Q 254.7 7.5 271.4 10.5 Q 288.1 13.5 313.5 13.2 Q 338.8 12.9 357.6 15.3 Q 376.4 17.7 390.9 17.0 Q 405.5 16.3 423.0 12.0 Q 440.4 7.7 455.8 8.7 Q 471.3 9.7 495.1 8.9 Q 518.8 8.2 539.8 10.9 Q 560.8 13.7 579.3 13.1 Q 597.7 12.6 598.9 10.5 L600 8.5 L600 26 L0 26 Z' fill='%23F5F8FF'/></svg>"); }
.card .qty-head { display: block; width: 70%; margin: 0 auto; font-size: clamp(1.25rem, 1.6vw + .6rem, 1.6rem); letter-spacing: .01em; line-height: 1.25; }

/* price stack: 3x crossed out (gold, red X) / list (blue) / -$100 (red) / final */
.card-price.stack { display: flex; flex-direction: column; align-items: center; gap: .1rem; line-height: 1; }
.card-price.stack .was { font-size: 1.5rem; }
.card-price.stack .list { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: #59A9FF; -webkit-text-fill-color: #59A9FF;
  background: none; filter: drop-shadow(0 0 12px rgba(89, 169, 255, .55)); }
.card-price.stack .off { font-family: var(--display); font-weight: 800; font-size: 1.15rem; color: #FF5A3C; -webkit-text-fill-color: #FF5A3C; background: none; letter-spacing: .02em; margin: .1rem 0; }
.card-price.stack .now { font-size: 2.4rem; }
.card-price.stack .per { margin-top: .25rem; }
.cart-item-list { font-family: var(--display); font-weight: 700; color: #59A9FF; font-size: .9rem; text-decoration: line-through; text-decoration-color: rgba(255, 90, 60, .9); }
.cart-item-off { font-family: var(--display); font-weight: 800; color: #FF5A3C; font-size: .78rem; letter-spacing: .04em; }
.cart-item .cart-item-price { font-size: 1.25rem; }
.upsell-price s { color: #59A9FF; font-size: .8rem; text-decoration-color: rgba(255, 90, 60, .9); }

/* cart line price stack: 3x gold with red X / list blue / -$100 red / final */
.cart-stack { align-items: flex-end; gap: 2px; }
.cart-was { position: relative; display: inline-block; font-family: var(--display); font-weight: 800; font-size: 1rem; line-height: 1.1;
  background: linear-gradient(180deg, var(--g-lite) 0%, var(--gold) 46%, var(--g-deep) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.cart-was::before, .cart-was::after { content: ""; position: absolute; left: -6%; right: -6%; top: 50%; height: 2px; border-radius: 2px; background: #E4321B; box-shadow: 0 0 6px rgba(228, 50, 27, .7); }
.cart-was::before { transform: rotate(-16deg); } .cart-was::after { transform: rotate(16deg); }
.cart-item-list { text-decoration: none; font-size: 1rem; line-height: 1.1; }
.cart-item-off { font-size: .85rem; line-height: 1.1; }
.cart-item .cart-item-price { font-size: 1.35rem; line-height: 1.1;
  background: linear-gradient(180deg, #7CF0A8 0%, #37C077 50%, #1B7A47 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.upsell-price.stack { display: flex; flex-direction: column; align-items: flex-start; gap: 1px; line-height: 1.1; }
.upsell-price.stack .cart-was { font-size: .95rem; }
.upsell-price.stack .cart-item-list { font-size: .95rem; }
.upsell-price.stack .cart-item-off { font-size: .8rem; }
.upsell-price.stack .cart-item-price { font-size: 1.25rem; font-family: var(--display); font-weight: 800; }
.upsell-row { align-items: flex-end; }
.stack-row { display: flex; align-items: baseline; gap: .5rem; white-space: nowrap; }
.cart-stack .stack-row { justify-content: flex-end; }
.cart-off-label { font-family: var(--display); font-weight: 700; font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: #FF8A73; }
.cart-item .cart-item-price, .upsell-price.stack .cart-item-price { filter: drop-shadow(0 0 10px rgba(55, 192, 119, .75)) drop-shadow(0 0 22px rgba(55, 192, 119, .45)); }
.upsell-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.upsell-item { min-width: 0; }
.upsell-row { min-width: 0; }
.upsell-row > div:first-child { min-width: 0; }
.upsell-price.stack .stack-row { white-space: normal; flex-wrap: wrap; gap: .25rem .4rem; }
.upsell-price.stack .cart-was, .upsell-price.stack .cart-item-list { font-size: .85rem; }
.upsell-price.stack .cart-off-label { font-size: .5rem; letter-spacing: .1em; }
.upsell-row .btn-add--sm { padding: .45rem .6rem; font-size: .62rem; }
.upsell-price.stack .cart-item-price { background: linear-gradient(180deg, #7CF0A8 0%, #37C077 50%, #1B7A47 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.upsell-price.stack .stack-row { flex-wrap: nowrap; white-space: nowrap; }
.upsell-price.stack .cart-off-label { font-size: .46rem; letter-spacing: .08em; }
.upsell-price.stack .cart-item-off { font-size: .78rem; }
/* recommendation cards: everything centered */
.upsell-item { text-align: center; }
.upsell-row { flex-direction: column; align-items: center; gap: 8px; }
.upsell-row > div:first-child { width: 100%; }
.upsell-price.stack { align-items: center; }
.upsell-price.stack .stack-row { justify-content: center; }
.upsell-item .cart-item-meta { text-align: center; }
.upsell-row .btn-add--sm { width: 100%; padding: .55rem .8rem; }
.upsell-price.stack .cart-item-price { font-size: 1.9rem; line-height: 1; margin-top: 2px; }
.cart-total-row.sub span:last-child { text-decoration: line-through; text-decoration-color: rgba(255, 90, 60, .9); text-decoration-thickness: 2px; color: var(--gold); }
.cart-total-row.bundle span:first-child { color: #FF8A73; }
.order-summary .sum-was { color: var(--gold); text-decoration-color: rgba(255, 90, 60, .9); margin-right: .3rem; opacity: .9; }
.order-summary .row.sub { border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 6px; padding-top: 8px; }
.order-summary .row.sub span:last-child { text-decoration: line-through; text-decoration-color: rgba(255, 90, 60, .9); color: var(--gold); }
.cart-total-row.bundle span:first-child { display: flex; flex-direction: column; gap: 2px; }
.cart-total-row.bundle small { font-family: var(--body); font-weight: 600; font-size: .72rem; letter-spacing: 0; text-transform: none; color: var(--gold); }
.cart-total-row.bundle small:empty { display: none; }
.cart-total-row.sub span:last-child, .order-summary .row.sub span:last-child { color: #FF5A3C; text-decoration-color: rgba(255, 90, 60, .95); }

/* drawer: one scroll area (items + picks), header and footer pinned */
.cart-drawer { overflow-y: auto; }
.cart-head { position: sticky; top: 0; z-index: 2; background: #1C1D22; }
.cart-items { flex: none; overflow: visible; }
.cart-foot { position: sticky; bottom: 0; z-index: 2; background: linear-gradient(180deg, rgba(20, 21, 25, .96), #141519); }

/* drawer structure: header / scrolling body (items + picks) / footer */
.cart-drawer { overflow: hidden; }
.cart-head { position: static; }
.cart-body { flex: 1; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.cart-foot { position: static; background: #141519; }

/* the 3 picks: swipeable carousel (scroll-snap = native swipe on mobile) */
.upsell-list { display: flex; grid-template-columns: none; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 2px 0 8px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.upsell-list::-webkit-scrollbar { display: none; }
.upsell-item { flex: 0 0 80%; scroll-snap-align: center; scroll-snap-stop: always; }
.upsell-item:first-child { margin-left: 4%; }
.upsell-item:last-child { margin-right: 4%; }
.upsell-item .ccface .cc-bank { font-size: .95rem; }
.upsell-item .ccface .cc-num { font-size: 1.2rem; }
.upsell-item .ccface .cc-age b { font-size: 1.2rem; }
.upsell-dots { display: flex; justify-content: center; gap: 6px; margin-top: 2px; }
.upsell-dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, .25); transition: background .15s, transform .15s; }
.upsell-dots i.on { background: var(--gold); transform: scale(1.3); }
.upsell-hint { text-align: center; font-family: var(--display); font-weight: 700; font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mute); margin: 4px 0 6px; }
.cart-item .link-remove { display: inline-flex; align-items: center; gap: .4rem; margin-top: 6px; padding: .45rem .8rem; border-radius: 999px;
  color: #FF5A3C; font-size: .78rem; letter-spacing: .12em; border: 1.5px solid rgba(255, 90, 60, .55); background: rgba(228, 50, 27, .10); cursor: pointer; transition: background .15s, border-color .15s; }
.cart-item .link-remove:hover { background: rgba(228, 50, 27, .22); border-color: #FF5A3C; color: #FF5A3C; }
.cart-item .link-remove .x { font-size: .95rem; line-height: 1; font-weight: 800; }
.upsell-item { cursor: pointer; transition: transform .18s, border-color .18s, box-shadow .18s; }
.upsell-item:hover, .upsell-item:focus-visible { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 0 26px -6px rgba(227, 180, 76, .8); outline: none; }
.upsell-item:active { transform: scale(.985); }
.tap-hint { display: block; width: 100%; text-align: center; font-family: var(--display); font-weight: 800; font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); padding: .35rem 0 .1rem; }

/* ---- landing sections: how it works / results / guarantee ---- */
.explain-sec, .results-sec, .guarantee-sec { padding: clamp(2.6rem, 6vw, 4.4rem) 0; text-align: center; border-bottom: 1px solid var(--line); }
.explain-sec h2, .results-sec h2, .guarantee-sec h2 { font-size: clamp(1.6rem, 3.8vw, 2.4rem); text-transform: uppercase; margin: .6rem 0 clamp(1.4rem, 3vw, 2rem); }
.explain-sec .step, .guarantee-sec .step { text-align: left; }
.explain-sec .step p, .help-list { color: var(--ink-dim); font-size: .95rem; line-height: 1.72; }
.explain-sec .step b, .help-list b { color: var(--ink); font-weight: 700; }
.help-list { list-style: none; padding: 0; margin: 0; }
.help-list li { position: relative; padding-left: 1.3rem; margin-bottom: .6rem; }
.help-list li::before { content: ""; position: absolute; left: 0; top: .6rem; width: .55rem; height: .55rem; border-radius: 50%;
  background: linear-gradient(180deg, var(--g-lite) -14%, var(--gold) 48%, var(--g-deep) 116%); }
.results-sec { background: linear-gradient(180deg, #0F1015, var(--deep)); }
.results-track { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 0 10px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.results-track::-webkit-scrollbar { display: none; }
.result-card { flex: 0 0 min(82%, 340px); scroll-snap-align: center; scroll-snap-stop: always; text-align: left;
  background: linear-gradient(180deg, #1C1D22, #17181D); border: 1px solid var(--line); border-radius: 18px; padding: 14px; box-shadow: 0 24px 60px -34px #000; }
.result-card:first-child { margin-left: 4%; } .result-card:last-child { margin-right: 4%; }
.result-shot { border-radius: 12px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .12); background: #0D0E11; margin-bottom: 12px; }
.result-shot img { display: block; width: 100%; height: auto; }
.result-shot--empty { aspect-ratio: 4 / 3; display: grid; place-items: center; text-align: center;
  background: repeating-linear-gradient(135deg, #131317, #131317 10px, #16161B 10px, #16161B 20px); }
.result-shot--empty span { font-family: var(--display); font-weight: 700; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); line-height: 1.8; }
.result-goal { font-family: var(--display); font-weight: 800; font-size: 1.05rem; text-transform: uppercase; letter-spacing: -.01em; color: #fff; }
.result-nums { display: flex; gap: 14px; margin: 8px 0; }
.result-nums span small { display: block; font-family: var(--display); font-weight: 700; font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); }
.result-nums span b { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--gold); }
.result-quote { color: var(--ink-dim); font-size: .95rem; line-height: 1.6; margin: 8px 0; }
.result-who { font-family: var(--display); font-weight: 700; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }
.result-card--slot { opacity: .8; border-style: dashed; }
.results-fine { color: var(--ink-mute); font-size: .78rem; margin-top: 10px; }
.results-sec .upsell-dots { margin-top: 6px; }
.guarantee-sec .hero-sub { margin-bottom: clamp(1.4rem, 3vw, 2rem); }
.g-point { position: relative; }
.g-check { width: 2.3rem; height: 2.3rem; border-radius: 50%; display: grid; place-items: center; margin-bottom: 14px; font-weight: 800; color: #20180A;
  background: linear-gradient(180deg, var(--g-lite) -14%, var(--gold) 48%, var(--g-deep) 116%); box-shadow: inset 0 1px 1px rgba(255, 255, 255, .5), 0 0 22px -2px rgba(227, 180, 76, .6); }
.guarantee-sec .step h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.guarantee-sec .step p { color: var(--ink-dim); font-size: .95rem; line-height: 1.7; }
.g-not { color: var(--ink-mute); font-size: .82rem; max-width: 62ch; margin: 1.4rem auto 0; line-height: 1.6; }

/* Banks in stock — #cc .bureau-row / .bureau-scroll / .bmark, verbatim treatment */
.bank-row { background: #fff; border-bottom: 1px solid #E1E8F4; padding: 1.1rem 0 1.15rem; }
.bank-row__label { text-align: center; font-family: var(--display); font-weight: 800; font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; color: #4A5A76; margin-bottom: .95rem; }
.bank-scroll { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%); }
.bank-track { display: flex; align-items: center; width: max-content; gap: clamp(1.9rem, 3.5vw, 3rem); animation: cc-slide-rev 46s linear infinite; }
.bmark { display: inline-flex; align-items: flex-start; white-space: nowrap; font-family: var(--display); font-weight: 800; letter-spacing: -.025em; font-size: clamp(1.05rem, 1.5vw, 1.42rem); line-height: 1; }
@keyframes cc-slide-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) { .bank-track { animation: none; } }
.hero { border-bottom: 0; }

/* How do tradelines work — the family's light section (#pp .incl), headline in hero style */
.explain-sec { background: linear-gradient(#F5F8FF, #E4EBF8); color: #0B1223; border-bottom: 0; }
.explain-sec .hero-kicker { color: #9A7420; }
.explain-sec .sec-title { color: #0B1223; font-size: clamp(2rem, 5.6vw, 3.6rem); line-height: 1.06; letter-spacing: -.02em; text-transform: uppercase; margin: .8rem 0 clamp(1.6rem, 3.5vw, 2.4rem); text-wrap: balance; }
.explain-sec .step { background: #fff; border: 1.5px solid #C9D3E6; box-shadow: 0 14px 34px -22px rgba(11, 18, 35, .45); }
.explain-sec .step h3 { color: #0B1223; }
.explain-sec .step p, .explain-sec .help-list { color: #4A5A76; }
.explain-sec .step b, .explain-sec .help-list b { color: #0B1223; }

/* ---- credit score meter ---- */
.meter-sec { padding: clamp(1.6rem, 4vw, 3rem) 0 clamp(2rem, 4vw, 3rem); text-align: center; background: radial-gradient(120% 90% at 50% 100%, #0B1226 0%, #070B16 70%); }
.meter { position: relative; width: min(420px, 92%); margin: 0 auto; }
.gauge { width: 100%; height: auto; display: block; overflow: visible; }
.gauge-bg { fill: none; stroke: rgba(255, 255, 255, .10); stroke-width: 14; stroke-linecap: round; }
.gauge-fill { fill: none; stroke: url(#gaugeGrad); stroke-width: 14; stroke-linecap: round; stroke-dasharray: 264; stroke-dashoffset: 264;
  filter: drop-shadow(0 0 10px rgba(255, 194, 26, .45)); }
.gauge-needle { transform-origin: 100px 104px; transform: rotate(-90deg); }
.gauge-needle line { stroke: #F4F7FF; stroke-width: 3; stroke-linecap: round; }
.gauge-needle circle { fill: #F4F7FF; }
.meter-num { position: absolute; left: 0; right: 0; bottom: 10%; }
.meter-num b { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(3rem, 9vw, 4.6rem); line-height: 1; letter-spacing: -.035em; color: #fff; transition: color .4s, text-shadow .4s; }
.meter-num b.done { color: #7CF0A8; text-shadow: 0 0 22px rgba(55, 192, 119, .7); }
.meter-num small { display: block; font-family: var(--display); font-weight: 700; font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-mute); margin-top: .3rem; }
.meter-pop, .b-pop { position: absolute; left: 50%; transform: translate(-50%, 6px); opacity: 0; pointer-events: none;
  font-family: var(--display); font-weight: 800; color: #3FBF6E; text-shadow: 0 0 14px rgba(55, 192, 119, .8); transition: transform .6s cubic-bezier(.2, .8, .3, 1), opacity .5s; }
.meter-pop { top: 44%; font-size: 1.6rem; }
.meter-pop.show { opacity: 1; transform: translate(-50%, -28px); }
.tl-added { position: absolute; top: 4%; right: -4%; display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .8rem; border-radius: 999px;
  background: linear-gradient(180deg, #1C1D22, #17181D); border: 1px solid rgba(91, 144, 255, .55); box-shadow: 0 0 22px -4px rgba(91, 144, 255, .8);
  font-family: var(--display); font-weight: 800; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: #fff;
  opacity: 0; transform: translateY(14px) scale(.92); transition: opacity .45s, transform .55s cubic-bezier(.2, .8, .3, 1); }
.tl-added.show { opacity: 1; transform: none; }
.tl-added .chip { width: 22px; height: 16px; border-radius: 4px; background: linear-gradient(135deg, #F3DA92, #C79B33 55%, #9A7420); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5); }
.tl-added i { font-style: normal; color: #3FBF6E; }
.bureaus { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 560px; margin: 1.2rem auto 0; }
.bureau { position: relative; background: #fff; border-radius: 14px; padding: .9rem .6rem .8rem; border: 1px solid #E1E8F4; transition: box-shadow .4s, border-color .4s; }
.bureau.done { border-color: rgba(55, 192, 119, .6); box-shadow: 0 0 0 1px rgba(55, 192, 119, .35), 0 0 26px -6px rgba(55, 192, 119, .8); }
.bureau .bmark { font-size: clamp(.85rem, 2.6vw, 1.05rem); justify-content: center; width: 100%; }
.bureau .b-score { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(1.5rem, 5vw, 2rem); letter-spacing: -.03em; color: #0B1223; margin-top: .35rem; line-height: 1; }
.bureau.done .b-score { color: #1B7A47; }
.b-pop { top: 38%; font-size: 1.05rem; }
.bureau.done .b-pop { opacity: 1; transform: translate(-50%, -26px); }
/* family bureau wordmarks (#cc .bmark--eq/--ex/--tu) */
.bmark--eq { color: #C8102E; font-style: italic; text-transform: uppercase; letter-spacing: -.005em; }
.bmark--ex { color: #632E88; text-transform: lowercase; }
.bmark--ex .exmark { width: .75em; height: 1em; margin-right: .18em; }
.bmark--tu { color: #00A3A8; }
.bmark--tu .tu { display: inline-grid; place-items: center; flex: none; width: 1.02em; height: 1.02em; border-radius: 50%; background: #00A3A8; color: #fff; font-size: .62em; font-weight: 800; font-style: italic; letter-spacing: 0; margin-left: .18em; transform: translateY(.06em); }
.meter-fine { color: var(--ink-mute); font-size: .78rem; margin-top: 1rem; }
@media (max-width: 480px) { .tl-added { right: 0; top: 0; font-size: .55rem; } }
.b-pop { top: 0; font-size: 1.15rem; }
.bureau.done .b-pop { transform: translate(-50%, -125%); }
.bureaus { margin-top: 2.2rem; }
.meter-num small { display: inline-block; color: #fff; font-size: .68rem; letter-spacing: .2em; padding: .3em .7em .35em; border-radius: .12em; margin-top: .45rem;
  background: linear-gradient(95deg, #59A9FF 0%, #3B8EF7 55%, #2B7FFF 100%); box-shadow: 0 0 24px -4px rgba(89, 169, 255, .85), 0 0 60px -18px rgba(43, 127, 255, .75); }

/* 850 shatter */
.meter.shatter .meter-num b { animation: num-burst .7s cubic-bezier(.2, .8, .3, 1) both; color: #FBE6AE; text-shadow: 0 0 18px rgba(255, 194, 26, .9), 0 0 46px rgba(255, 194, 26, .6); }
@keyframes num-burst { 0% { transform: scale(1); } 35% { transform: scale(1.28); } 100% { transform: scale(1.12); } }
.meter.shatter .gauge-fill { animation: gauge-flash .9s ease-out both; }
@keyframes gauge-flash { 0% { filter: drop-shadow(0 0 10px rgba(255, 194, 26, .45)); } 30% { filter: drop-shadow(0 0 26px rgba(255, 255, 255, .95)) brightness(1.6); } 100% { filter: drop-shadow(0 0 16px rgba(55, 192, 119, .8)); } }
.shards { position: absolute; left: 50%; top: 58%; width: 0; height: 0; pointer-events: none; }
.shards i { position: absolute; left: -4px; top: -6px; width: 8px; height: 12px; border-radius: 2px; opacity: 0;
  animation: shard-fly 1.1s cubic-bezier(.15, .7, .3, 1) forwards; }
.shards i.gold { background: linear-gradient(180deg, #FBE6AE, #E3B44C 60%, #9A7420); box-shadow: 0 0 8px rgba(227, 180, 76, .8); }
.shards i.green { background: linear-gradient(180deg, #7CF0A8, #37C077 60%, #1B7A47); box-shadow: 0 0 8px rgba(55, 192, 119, .8); }
@keyframes shard-fly { 0% { opacity: 1; transform: translate(0, 0) rotate(0); } 70% { opacity: 1; } 100% { opacity: 0; transform: translate(var(--dx), var(--dy)) rotate(var(--rot)); } }
.maxed { position: absolute; left: 50%; top: 22%; z-index: 3; transform: translate(-50%, 10px); font-family: var(--display); font-weight: 800; font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: #20180A;
  background: linear-gradient(180deg, #FBE6AE -10%, #E3B44C 50%, #B98F2C 110%); padding: .45rem 1rem; border-radius: 999px; box-shadow: 0 0 22px -2px rgba(227, 180, 76, .9);
  animation: maxed-in .5s .25s cubic-bezier(.2, .8, .3, 1) both; }
@keyframes maxed-in { from { opacity: 0; transform: translate(-50%, 10px) scale(.9); } to { opacity: 1; transform: translate(-50%, 0) scale(1); } }
@media (prefers-reduced-motion: reduce) { .shards, .meter.shatter .meter-num b, .meter.shatter .gauge-fill { animation: none; } }
.sec-title--stack { display: flex; flex-direction: column; align-items: center; gap: .12em; font-size: clamp(2.6rem, 8vw, 5rem) !important; line-height: 1 !important; }
.sec-title--stack > span { display: inline-block; }
.sec-title--stack .gold { padding: .04em .28em .08em; }

/* explain cards styled as the back of a credit card */
.explain-sec .step.ccback { position: relative; padding: 0; overflow: hidden; border-radius: 16px; border: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(135deg, #1F2A44 0%, #131B30 55%, #0E1428 100%); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), inset 0 -1px 0 rgba(0, 0, 0, .5), 0 24px 60px -34px #000; }
.explain-sec .step.ccback::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(107deg, rgba(255, 255, 255, .14) 0 18%, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, .06) 78%, rgba(255, 255, 255, 0) 100%); }
.ccback-stripe { height: 40px; margin-top: 22px; background: linear-gradient(180deg, #0A0A0C, #1A1A1E 50%, #0A0A0C); box-shadow: inset 0 2px 4px rgba(0, 0, 0, .6); }
.ccback-panel { position: relative; margin: 18px 18px 22px; padding: 18px 18px 16px 18px; border-radius: 8px; background: #F6F3EA; color: #0B1223;
  background-image: repeating-linear-gradient(0deg, transparent 0 9px, rgba(11, 18, 35, .06) 9px 10px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 1px 0 rgba(0, 0, 0, .35); }
.ccback-panel h3 { color: #0B1223; margin-top: 0; }
.ccback-panel p, .ccback-panel .help-list { color: #33415C; }
.ccback-panel b, .ccback-panel .help-list b { color: #0B1223; }
.step-num.cvv { position: absolute; top: -14px; right: 12px; width: auto; height: auto; border-radius: 4px; padding: .2rem .55rem; margin: 0;
  background: #fff; color: #0B1223; font-family: var(--display); font-weight: 800; font-size: .8rem; letter-spacing: .14em; box-shadow: 0 1px 2px rgba(0, 0, 0, .35), inset 0 0 0 1px rgba(11, 18, 35, .12); }
.step-num.cvv::before { content: "0"; opacity: .35; }
.step-num.cvv::after { content: "0"; opacity: .35; }
.explain-sec .step.ccback .ccback-panel::before { content: "AUTHORIZED SIGNATURE · NOT VALID UNLESS SIGNED"; position: absolute; top: -13px; left: 2px; font-family: var(--display); font-weight: 700; font-size: .5rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(244, 247, 255, .55); }
.explain-sec .step.ccback .ccback-panel { margin-top: 26px; }

/* card-back titles: #cc .rstep__card h3 treatment — gradient text + coloured halo, per-card palette (red / gold / green) */
.ccback-panel h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); margin-bottom: .45rem; text-transform: uppercase; letter-spacing: -.01em; text-shadow: none;
  background: linear-gradient(180deg, var(--s-lite) -30%, var(--s) 38%, var(--s-deep) 108%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, .18)) drop-shadow(0 0 11px var(--s-halo)); }
.explain-sec .step:nth-of-type(1) { --s-lite: #FF8A7E; --s: #D6342C; --s-deep: #8E1610; --s-halo: rgba(214, 52, 44, .34); }
.explain-sec .step:nth-of-type(2) { --s-lite: #FFD782; --s: #D99413; --s-deep: #8E5A05; --s-halo: rgba(217, 148, 19, .34); }
.explain-sec .step:nth-of-type(3) { --s-lite: #7CE6A6; --s: #1E9E52; --s-deep: #0B6130; --s-halo: rgba(30, 158, 82, .34); }
.explain-sec .step.ccback, .ccback-panel, .ccback-panel h3, .ccback-panel p { text-align: center; }
.ccback-panel .help-list li { padding-left: 0; text-align: center; }
.ccback-panel .help-list li::before { display: none; }
.btn-skip-float { position: fixed; left: 50%; bottom: 18px; z-index: 45; transform: translateX(-50%); text-decoration: none; padding: .9rem 1.6rem; font-size: .85rem;
  box-shadow: 0 14px 34px -10px rgba(27, 92, 255, .9), 0 0 0 1px rgba(255, 255, 255, .12); transition: transform .3s cubic-bezier(.2, .8, .3, 1), opacity .3s; }
.btn-skip-float.hide { opacity: 0; transform: translate(-50%, 30px); pointer-events: none; }
.btn-skip-float::after { content: none; }
.skip-arrow { width: 1.05em; height: 1.05em; margin-left: .1em; animation: skip-bob 1.1s ease-in-out infinite; }
@keyframes skip-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
@media (prefers-reduced-motion: reduce) { .skip-arrow { animation: none; } }

/* guarantee: white paper section, hero-style stacked headline */
.guarantee-sec { background: linear-gradient(#F5F8FF, #E4EBF8); color: #0B1223; border-bottom: 0; }
.guarantee-sec .hero-kicker { color: #9A7420; }
.guarantee-sec .sec-title { color: #0B1223; }
.guarantee-sec .hero-sub { color: #33415C; }
.guarantee-sec .step { background: #fff; border: 1.5px solid #C9D3E6; box-shadow: 0 14px 34px -22px rgba(11, 18, 35, .45); }
.guarantee-sec .step h3 { color: #0B1223; }
.guarantee-sec .step p { color: #4A5A76; }
.guarantee-sec .g-not { color: #6B7C99; }
.guarantee-sec .sec-title .gold { background: linear-gradient(95deg, #7CF0A8 0%, #37C077 55%, #1E9E52 100%); box-shadow: 0 0 34px -4px rgba(55, 192, 119, .85), 0 0 90px -18px rgba(30, 158, 82, .75); }
.guarantee-sec .hero-sub:empty { display: none; }

/* pain → fixed statements, hero headline style */
.fixed-sec { padding: clamp(1.4rem, 4vw, 3rem) 0 clamp(2.4rem, 5vw, 4rem); text-align: center; background: radial-gradient(120% 90% at 50% 0%, #0B1226 0%, #070B16 70%); border-bottom: 1px solid var(--line); }
.fixed-item { padding: clamp(1.2rem, 3vw, 2rem) 0; }
.fixed-item + .fixed-item { border-top: 1px solid rgba(255, 255, 255, .08); }
.fixed-q { font-family: var(--display); font-weight: 800; font-size: clamp(1.5rem, 5.4vw, 2.6rem); line-height: 1.08; letter-spacing: -.02em; text-transform: uppercase; color: #fff; text-wrap: balance; margin: 0 auto .6rem; max-width: 22ch; }
.fixed-a { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 7.5vw, 3.6rem); line-height: 1.06; letter-spacing: -.025em; text-transform: uppercase; }
.gold--green { background: linear-gradient(95deg, #7CF0A8 0%, #37C077 55%, #1E9E52 100%); box-shadow: 0 0 34px -4px rgba(55, 192, 119, .85), 0 0 90px -18px rgba(30, 158, 82, .75); }
.fixed-list { margin-top: clamp(1.6rem, 4vw, 2.6rem); }
.guarantee-sec .fixed-q { color: #0B1223; }
.guarantee-sec .fixed-item + .fixed-item { border-top: 1px solid rgba(11, 18, 35, .10); }

/* guarantee cards as the back of an envelope, check mark as a postage stamp */
.guarantee-sec .step.g-point { position: relative; overflow: hidden; padding-top: 4.2rem; border-radius: 12px; border: 1px solid #D9D3C2;
  background: #F6F3EA; background-image: linear-gradient(180deg, rgba(255, 255, 255, .6), rgba(255, 255, 255, 0) 40%); box-shadow: 0 18px 40px -26px rgba(11, 18, 35, .55), inset 0 0 0 1px rgba(255, 255, 255, .6); }
/* envelope flap: a V from the top corners to the centre */
.guarantee-sec .step.g-point::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3.4rem; z-index: 0;
  background: linear-gradient(180deg, #EFEADB, #E6E0CE); clip-path: polygon(0 0, 100% 0, 50% 100%); box-shadow: inset 0 -1px 0 rgba(11, 18, 35, .12); }
.guarantee-sec .step.g-point::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3.4rem; z-index: 0; pointer-events: none;
  background: linear-gradient(to bottom right, transparent calc(50% - 1px), rgba(11, 18, 35, .18) 50%, transparent calc(50% + 1px)) left/50% 100% no-repeat,
              linear-gradient(to bottom left, transparent calc(50% - 1px), rgba(11, 18, 35, .18) 50%, transparent calc(50% + 1px)) right/50% 100% no-repeat; }
.guarantee-sec .step.g-point h3, .guarantee-sec .step.g-point p { position: relative; z-index: 1; }
/* the stamp */
.guarantee-sec .g-check { position: absolute; top: .7rem; right: .8rem; z-index: 2; width: 2.9rem; height: 3.4rem; border-radius: 3px; margin: 0; transform: rotate(6deg);
  background: linear-gradient(180deg, #7CE6A6 -14%, #1E9E52 48%, #0B6130 116%); color: #fff; font-size: 1.4rem; font-weight: 800;
  border: 4px solid #fff; outline: 3px dotted #F6F3EA; outline-offset: -5px; box-shadow: 0 3px 8px rgba(0, 0, 0, .25); }
/* postmark rings over the stamp */
.guarantee-sec .g-check::before { content: ""; position: absolute; left: -1.3rem; top: .35rem; width: 3rem; height: 3rem; border-radius: 50%;
  border: 2px solid rgba(11, 18, 35, .35); box-shadow: inset 0 0 0 4px transparent, inset 0 0 0 5px rgba(11, 18, 35, .25); transform: rotate(-6deg); pointer-events: none; }
.guarantee-sec .g-check::after { content: ""; position: absolute; left: -2.2rem; top: 1.4rem; width: 3.2rem; height: 6px; pointer-events: none; transform: rotate(-6deg);
  background: repeating-linear-gradient(180deg, rgba(11, 18, 35, .32) 0 1px, transparent 1px 3px); }
.guarantee-sec .step.g-point h3 { margin-top: .2rem; }

/* rating strip under client results */
.rating-strip { margin-top: 1.4rem; }
.rating-strip:empty { display: none; }
.rating-row { display: flex; align-items: center; justify-content: center; gap: .8rem; flex-wrap: wrap; }
.rating-num { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 7vw, 3.2rem); line-height: 1; letter-spacing: -.04em; color: #fff; }
.rating-stars { display: inline-flex; gap: 2px; font-size: 1.5rem; line-height: 1; }
.rating-stars i { font-style: normal; color: rgba(255, 255, 255, .18); }
.rating-stars i.on { color: #F5B301; text-shadow: 0 0 10px rgba(245, 179, 1, .5); }
.rating-stars i.half { background: linear-gradient(90deg, #F5B301 50%, rgba(255, 255, 255, .18) 50%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.rating-count { color: var(--ink-dim); font-size: 1rem; }
.avatar-row { display: flex; justify-content: center; margin-top: 1rem; padding-left: 10px; }
.avatar { width: 34px; height: 34px; border-radius: 50%; margin-left: -10px; display: grid; place-items: center; flex: none;
  font-family: var(--display); font-weight: 800; font-size: .62rem; letter-spacing: .04em; color: #fff; border: 2px solid #141519;
  background: linear-gradient(145deg, hsl(var(--h) 70% 62%), hsl(var(--h) 60% 38%)); box-shadow: 0 2px 6px rgba(0, 0, 0, .4); }
@media (max-width: 480px) { .avatar-row { flex-wrap: wrap; row-gap: 6px; } }
.rating-strip { margin: -.6rem 0 1.4rem; }
.results-title { color: #fff; margin: .6rem 0 1.4rem !important; }
.results-title > span:first-child { font-size: .62em; max-width: 14ch; line-height: 1.1; }
.results-sec .rating-strip { margin-top: 0; }
.guarantee-sec .step.g-point { text-align: center; }
.guarantee-sec .step.g-point h3 { text-transform: uppercase; letter-spacing: .01em; font-size: 1.1rem; }
.guarantee-sec .step.g-point p { text-align: center; }

/* filters panel */
.filters { align-items: center; }
.filter-toggle { display: inline-flex; align-items: center; gap: .5rem; border-radius: 11px; padding: .82rem 1.1rem; font-family: var(--display); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.filter-toggle.on { border-color: var(--gold); color: var(--gold); }
.filter-badge { background: var(--gold); color: #20180A; border-radius: 999px; min-width: 20px; height: 20px; display: grid; place-items: center; font-size: .7rem; padding: 0 6px; }
.filter-panel { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; align-items: end; margin: 12px 0 18px; padding: 14px;
  background: linear-gradient(180deg, #1C1D22, #17181D); border: 1px solid var(--line); border-radius: 14px; }
.filter-panel[hidden] { display: none; }
.f-field { display: flex; flex-direction: column; gap: 6px; }
.f-field > span { font-family: var(--display); font-weight: 700; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mute); }
.f-field select { width: 100%; }
.filter-clear { border-radius: 11px; padding: .82rem 1rem; font-family: var(--display); font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
@media (max-width: 640px) { .filters input { flex: 1 1 100%; } .filters select { flex: 1; } .filter-panel { grid-template-columns: 1fr; } }
.filter-panel select { background: #141519; border: 1px solid rgba(255, 255, 255, .13); border-radius: 11px; color: var(--ink); font-family: var(--body); font-size: 1rem; padding: .82rem 2.4rem .82rem .95rem;
  appearance: none; -webkit-appearance: none; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
  background-image: linear-gradient(45deg, transparent 50%, #7C8AA6 50%), linear-gradient(135deg, #7C8AA6 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.filter-panel select:focus { outline: none; background-color: #171922; border-color: var(--cta-hi); box-shadow: 0 0 0 3px rgba(27, 92, 255, .26); }
.catalog-title { color: #fff; margin: 0 0 1.2rem !important; align-items: flex-start; }
.catalog-title .gold-grad { background: linear-gradient(180deg, #FFF3B0 0%, #F5C842 45%, #B98F2C 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, .55)) drop-shadow(0 0 16px rgba(227, 180, 76, .45)); }
.catalog-head { align-items: flex-start; }
@media (max-width: 640px) { .catalog-title { align-items: center; } }
.catalog-head { flex-direction: column; align-items: center; }
.catalog-title { align-items: center !important; width: 100%; }
.filters { justify-content: center; width: 100%; }

/* paper rips at every dark <-> light seam (same smooth tear as the card paper section) */
.bank-row, .explain-sec, .guarantee-sec { position: relative; }
.bank-row::before, .guarantee-sec::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 26px; z-index: 2; pointer-events: none;
  background-repeat: no-repeat; background-size: 100% 26px; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='26' viewBox='0 0 600 26' preserveAspectRatio='none'><path d='M0 12.9 Q 0.0 12.9 15.8 14.8 Q 31.6 16.8 46.5 16.1 Q 61.4 15.4 79.7 12.6 Q 98.1 9.7 118.2 9.6 Q 138.3 9.4 157.5 9.6 Q 176.7 9.8 191.8 12.0 Q 206.9 14.1 230.8 12.3 Q 254.7 10.5 271.4 13.5 Q 288.1 16.5 313.5 16.2 Q 338.8 15.9 357.6 18.3 Q 376.4 20.7 390.9 20.0 Q 405.5 19.3 423.0 15.0 Q 440.4 10.7 455.8 11.7 Q 471.3 12.7 495.1 11.9 Q 518.8 11.2 539.8 13.9 Q 560.8 16.7 579.3 16.1 Q 597.7 15.6 598.9 13.5 L600 11.5 L600 26 L0 26 Z' fill='rgba(11,18,35,0.28)'/><path d='M0 11.1 Q 0.0 11.1 15.8 13.0 Q 31.6 15.0 46.5 14.3 Q 61.4 13.6 79.7 10.8 Q 98.1 7.9 118.2 7.8 Q 138.3 7.6 157.5 7.8 Q 176.7 8.0 191.8 10.2 Q 206.9 12.3 230.8 10.5 Q 254.7 8.7 271.4 11.7 Q 288.1 14.7 313.5 14.4 Q 338.8 14.1 357.6 16.5 Q 376.4 18.9 390.9 18.2 Q 405.5 17.5 423.0 13.2 Q 440.4 8.9 455.8 9.9 Q 471.3 10.9 495.1 10.1 Q 518.8 9.4 539.8 12.1 Q 560.8 14.9 579.3 14.3 Q 597.7 13.8 598.9 11.7 L600 9.7 L600 26 L0 26 Z' fill='%23C9D3E6'/><path d='M0 9.9 Q 0.0 9.9 15.8 11.8 Q 31.6 13.8 46.5 13.1 Q 61.4 12.4 79.7 9.6 Q 98.1 6.7 118.2 6.6 Q 138.3 6.4 157.5 6.6 Q 176.7 6.8 191.8 9.0 Q 206.9 11.1 230.8 9.3 Q 254.7 7.5 271.4 10.5 Q 288.1 13.5 313.5 13.2 Q 338.8 12.9 357.6 15.3 Q 376.4 17.7 390.9 17.0 Q 405.5 16.3 423.0 12.0 Q 440.4 7.7 455.8 8.7 Q 471.3 9.7 495.1 8.9 Q 518.8 8.2 539.8 10.9 Q 560.8 13.7 579.3 13.1 Q 597.7 12.6 598.9 10.5 L600 8.5 L600 26 L0 26 Z' fill='%23F5F8FF'/></svg>"); }
.explain-sec::after, .guarantee-sec::after { content: ""; position: absolute; left: 0; right: 0; bottom: -14px; height: 26px; z-index: 2; pointer-events: none;
  background-repeat: no-repeat; background-size: 100% 26px; transform: scaleY(-1); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='26' viewBox='0 0 600 26' preserveAspectRatio='none'><path d='M0 12.9 Q 0.0 12.9 15.8 14.8 Q 31.6 16.8 46.5 16.1 Q 61.4 15.4 79.7 12.6 Q 98.1 9.7 118.2 9.6 Q 138.3 9.4 157.5 9.6 Q 176.7 9.8 191.8 12.0 Q 206.9 14.1 230.8 12.3 Q 254.7 10.5 271.4 13.5 Q 288.1 16.5 313.5 16.2 Q 338.8 15.9 357.6 18.3 Q 376.4 20.7 390.9 20.0 Q 405.5 19.3 423.0 15.0 Q 440.4 10.7 455.8 11.7 Q 471.3 12.7 495.1 11.9 Q 518.8 11.2 539.8 13.9 Q 560.8 16.7 579.3 16.1 Q 597.7 15.6 598.9 13.5 L600 11.5 L600 26 L0 26 Z' fill='rgba(11,18,35,0.28)'/><path d='M0 11.1 Q 0.0 11.1 15.8 13.0 Q 31.6 15.0 46.5 14.3 Q 61.4 13.6 79.7 10.8 Q 98.1 7.9 118.2 7.8 Q 138.3 7.6 157.5 7.8 Q 176.7 8.0 191.8 10.2 Q 206.9 12.3 230.8 10.5 Q 254.7 8.7 271.4 11.7 Q 288.1 14.7 313.5 14.4 Q 338.8 14.1 357.6 16.5 Q 376.4 18.9 390.9 18.2 Q 405.5 17.5 423.0 13.2 Q 440.4 8.9 455.8 9.9 Q 471.3 10.9 495.1 10.1 Q 518.8 9.4 539.8 12.1 Q 560.8 14.9 579.3 14.3 Q 597.7 13.8 598.9 11.7 L600 9.7 L600 26 L0 26 Z' fill='%23C9D3E6'/><path d='M0 9.9 Q 0.0 9.9 15.8 11.8 Q 31.6 13.8 46.5 13.1 Q 61.4 12.4 79.7 9.6 Q 98.1 6.7 118.2 6.6 Q 138.3 6.4 157.5 6.6 Q 176.7 6.8 191.8 9.0 Q 206.9 11.1 230.8 9.3 Q 254.7 7.5 271.4 10.5 Q 288.1 13.5 313.5 13.2 Q 338.8 12.9 357.6 15.3 Q 376.4 17.7 390.9 17.0 Q 405.5 16.3 423.0 12.0 Q 440.4 7.7 455.8 8.7 Q 471.3 9.7 495.1 8.9 Q 518.8 8.2 539.8 10.9 Q 560.8 13.7 579.3 13.1 Q 597.7 12.6 598.9 10.5 L600 8.5 L600 26 L0 26 Z' fill='%23F5F8FF'/></svg>"); }
.results-sec, .catalog { position: relative; z-index: 1; }
.meter-sec, .fixed-sec { position: relative; }

/* header dropdown menu */
.menu { position: relative; }
.menu-btn { width: 44px; height: 44px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .16); background: rgba(255, 255, 255, .05); cursor: pointer;
  display: grid; place-items: center; gap: 0; padding: 0; transition: border-color .15s, background .15s; }
.menu-btn span { display: block; width: 18px; height: 2.4px; border-radius: 2px; background: #fff; margin: 2px 0; transition: transform .2s, opacity .2s; }
.menu-btn:hover, .menu-btn.open { border-color: var(--gold); background: rgba(227, 180, 76, .12); }
.menu-btn.open span:nth-child(1) { transform: translateY(6.4px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-6.4px) rotate(-45deg); }
.menu-panel { position: absolute; right: 0; top: calc(100% + 10px); min-width: 230px; z-index: 60; padding: 8px;
  background: linear-gradient(180deg, #1C1D22, #17181D); border: 1px solid rgba(91, 144, 255, .45); border-radius: 14px;
  box-shadow: 0 0 30px 0 rgba(91, 144, 255, .22), 0 30px 60px -34px #000; }
.menu-panel[hidden] { display: none; }
.menu-panel a { display: block; padding: .75rem .9rem; border-radius: 9px; text-decoration: none; color: var(--ink);
  font-family: var(--display); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.menu-panel a:hover { background: rgba(27, 92, 255, .14); color: #fff; }
.menu-panel a + a { border-top: 1px solid rgba(255, 255, 255, .06); }
.header-nav { gap: 12px; }

/* ---------------------------------------------------------------------------
   Sub-pages: sell / affiliates / wholesale / resources / about / contact
   --------------------------------------------------------------------------- */
.sub-hero { padding: clamp(2.6rem, 6vw, 4.4rem) 0 clamp(2rem, 5vw, 3.4rem); }
.sub-hero .sec-title { color: #fff; margin: .8rem 0 1.2rem; }
.sub-hero .hero-sub { margin-bottom: 0; }
.sub-sec { padding: clamp(2.4rem, 6vw, 4.2rem) 0; text-align: center; border-bottom: 1px solid var(--line); }
.sub-sec--light { background: linear-gradient(#F5F8FF, #E4EBF8); color: #0B1223; border-bottom: 0; position: relative; }
.sub-sec--light::before, .sub-sec--light::after { content: ""; position: absolute; left: 0; right: 0; height: 26px; z-index: 2; pointer-events: none; background-repeat: no-repeat; background-size: 100% 26px; }
.sub-sec--light::before { top: -14px; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='26' viewBox='0 0 600 26' preserveAspectRatio='none'><path d='M0 12.9 Q 0.0 12.9 15.8 14.8 Q 31.6 16.8 46.5 16.1 Q 61.4 15.4 79.7 12.6 Q 98.1 9.7 118.2 9.6 Q 138.3 9.4 157.5 9.6 Q 176.7 9.8 191.8 12.0 Q 206.9 14.1 230.8 12.3 Q 254.7 10.5 271.4 13.5 Q 288.1 16.5 313.5 16.2 Q 338.8 15.9 357.6 18.3 Q 376.4 20.7 390.9 20.0 Q 405.5 19.3 423.0 15.0 Q 440.4 10.7 455.8 11.7 Q 471.3 12.7 495.1 11.9 Q 518.8 11.2 539.8 13.9 Q 560.8 16.7 579.3 16.1 Q 597.7 15.6 598.9 13.5 L600 11.5 L600 26 L0 26 Z' fill='rgba(11,18,35,0.28)'/><path d='M0 11.1 Q 0.0 11.1 15.8 13.0 Q 31.6 15.0 46.5 14.3 Q 61.4 13.6 79.7 10.8 Q 98.1 7.9 118.2 7.8 Q 138.3 7.6 157.5 7.8 Q 176.7 8.0 191.8 10.2 Q 206.9 12.3 230.8 10.5 Q 254.7 8.7 271.4 11.7 Q 288.1 14.7 313.5 14.4 Q 338.8 14.1 357.6 16.5 Q 376.4 18.9 390.9 18.2 Q 405.5 17.5 423.0 13.2 Q 440.4 8.9 455.8 9.9 Q 471.3 10.9 495.1 10.1 Q 518.8 9.4 539.8 12.1 Q 560.8 14.9 579.3 14.3 Q 597.7 13.8 598.9 11.7 L600 9.7 L600 26 L0 26 Z' fill='%23C9D3E6'/><path d='M0 9.9 Q 0.0 9.9 15.8 11.8 Q 31.6 13.8 46.5 13.1 Q 61.4 12.4 79.7 9.6 Q 98.1 6.7 118.2 6.6 Q 138.3 6.4 157.5 6.6 Q 176.7 6.8 191.8 9.0 Q 206.9 11.1 230.8 9.3 Q 254.7 7.5 271.4 10.5 Q 288.1 13.5 313.5 13.2 Q 338.8 12.9 357.6 15.3 Q 376.4 17.7 390.9 17.0 Q 405.5 16.3 423.0 12.0 Q 440.4 7.7 455.8 8.7 Q 471.3 9.7 495.1 8.9 Q 518.8 8.2 539.8 10.9 Q 560.8 13.7 579.3 13.1 Q 597.7 12.6 598.9 10.5 L600 8.5 L600 26 L0 26 Z' fill='%23F5F8FF'/></svg>"); }
.sub-sec--light::after { bottom: -14px; transform: scaleY(-1); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='26' viewBox='0 0 600 26' preserveAspectRatio='none'><path d='M0 12.9 Q 0.0 12.9 15.8 14.8 Q 31.6 16.8 46.5 16.1 Q 61.4 15.4 79.7 12.6 Q 98.1 9.7 118.2 9.6 Q 138.3 9.4 157.5 9.6 Q 176.7 9.8 191.8 12.0 Q 206.9 14.1 230.8 12.3 Q 254.7 10.5 271.4 13.5 Q 288.1 16.5 313.5 16.2 Q 338.8 15.9 357.6 18.3 Q 376.4 20.7 390.9 20.0 Q 405.5 19.3 423.0 15.0 Q 440.4 10.7 455.8 11.7 Q 471.3 12.7 495.1 11.9 Q 518.8 11.2 539.8 13.9 Q 560.8 16.7 579.3 16.1 Q 597.7 15.6 598.9 13.5 L600 11.5 L600 26 L0 26 Z' fill='rgba(11,18,35,0.28)'/><path d='M0 11.1 Q 0.0 11.1 15.8 13.0 Q 31.6 15.0 46.5 14.3 Q 61.4 13.6 79.7 10.8 Q 98.1 7.9 118.2 7.8 Q 138.3 7.6 157.5 7.8 Q 176.7 8.0 191.8 10.2 Q 206.9 12.3 230.8 10.5 Q 254.7 8.7 271.4 11.7 Q 288.1 14.7 313.5 14.4 Q 338.8 14.1 357.6 16.5 Q 376.4 18.9 390.9 18.2 Q 405.5 17.5 423.0 13.2 Q 440.4 8.9 455.8 9.9 Q 471.3 10.9 495.1 10.1 Q 518.8 9.4 539.8 12.1 Q 560.8 14.9 579.3 14.3 Q 597.7 13.8 598.9 11.7 L600 9.7 L600 26 L0 26 Z' fill='%23C9D3E6'/><path d='M0 9.9 Q 0.0 9.9 15.8 11.8 Q 31.6 13.8 46.5 13.1 Q 61.4 12.4 79.7 9.6 Q 98.1 6.7 118.2 6.6 Q 138.3 6.4 157.5 6.6 Q 176.7 6.8 191.8 9.0 Q 206.9 11.1 230.8 9.3 Q 254.7 7.5 271.4 10.5 Q 288.1 13.5 313.5 13.2 Q 338.8 12.9 357.6 15.3 Q 376.4 17.7 390.9 17.0 Q 405.5 16.3 423.0 12.0 Q 440.4 7.7 455.8 8.7 Q 471.3 9.7 495.1 8.9 Q 518.8 8.2 539.8 10.9 Q 560.8 13.7 579.3 13.1 Q 597.7 12.6 598.9 10.5 L600 8.5 L600 26 L0 26 Z' fill='%23F5F8FF'/></svg>"); }
.sub-h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); text-transform: uppercase; margin-bottom: clamp(1.2rem, 3vw, 1.8rem); }
.sub-sec--light .sub-h2 { color: #0B1223; }
.sub-sec .steps { text-align: left; }
.sub-sec--light .step { background: #fff; border: 1.5px solid #C9D3E6; box-shadow: 0 14px 34px -22px rgba(11, 18, 35, .45); }
.sub-sec--light .step h3 { color: #0B1223; }
.sub-sec--light .step p { color: #4A5A76; }
.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; text-align: left; }
.benefit { background: linear-gradient(180deg, #1C1D22, #17181D); border: 1px solid var(--line); border-radius: 14px; padding: 1rem 1.1rem; }
.benefit b { display: block; font-family: var(--display); font-weight: 800; font-size: .95rem; margin-bottom: .35rem; color: #fff; }
.benefit b a { color: var(--gold); text-decoration: none; }
.benefit span { color: var(--ink-dim); font-size: .92rem; line-height: 1.6; }
.sub-sec--light .benefit { background: #fff; border: 1.5px solid #C9D3E6; }
.sub-sec--light .benefit b { color: #0B1223; }
.sub-sec--light .benefit span { color: #4A5A76; }
.faq--sub { text-align: left; max-width: 760px; margin: 0 auto; }
.faq--sub details { background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015)); border: 1px solid var(--line); border-radius: 15px; overflow: hidden; margin-bottom: .7rem; }
.faq--sub summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: .8rem; padding: 1.05rem 1.15rem; font-family: var(--display); font-weight: 700; font-size: 1rem; color: #fff; }
.faq--sub summary::-webkit-details-marker { display: none; }
.faq--sub summary::after { content: "+"; color: var(--gold); font-weight: 700; font-size: 1.2rem; }
.faq--sub details[open] summary::after { content: "–"; }
.faq--sub details p { color: var(--ink-dim); padding: 0 1.15rem 1.1rem; font-size: .95rem; line-height: 1.72; }
.faq--sub details h4 { color: #fff; font-family: var(--display); font-weight: 800; font-size: .95rem; padding: .2rem 1.15rem .3rem; }
.sub-sec--light .faq--sub details { background: #fff; border-color: #C9D3E6; }
.sub-sec--light .faq--sub summary { color: #0B1223; }
.sub-sec--light .faq--sub details p { color: #4A5A76; }
.form-card { max-width: 560px; margin: 0 auto; text-align: left; padding: clamp(1.3rem, 3.5vw, 2rem); border: 1px solid rgba(91, 144, 255, .45); box-shadow: 0 0 30px 0 rgba(91, 144, 255, .18), 0 30px 60px -34px #000; }
.form-card:hover { transform: none; }
.form-card h3 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: 1rem; text-align: center; }
.lead-form label { display: block; font-family: var(--body); font-size: .86rem; font-weight: 500; color: var(--ink-dim); margin-bottom: 14px; }
.lead-form .opt { color: var(--ink-mute); }
.lead-form input, .lead-form textarea, .lead-form select { width: 100%; margin-top: .42rem; background: #141519; border: 1px solid rgba(255, 255, 255, .13); border-radius: 11px; color: var(--ink); font-family: var(--body); font-size: 1rem; padding: .82rem .95rem; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03); }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: #5D6A82; }
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus { outline: none; background: #171922; border-color: var(--cta-hi); box-shadow: 0 0 0 3px rgba(27, 92, 255, .26); }
.lead-form select { appearance: none; -webkit-appearance: none; padding-right: 2.4rem; background-image: linear-gradient(45deg, transparent 50%, #7C8AA6 50%), linear-gradient(135deg, #7C8AA6 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.lead-form .form-msg { text-align: center; }
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin-bottom: 18px; }
.tier { position: relative; background: #fff; border: 2px solid #C9D3E6; border-radius: 18px; padding: 1.6rem 1rem 1.2rem; }
.tier--hot { border-color: #5B90FF; box-shadow: 0 0 10px -1px rgba(91, 144, 255, .8), 0 0 30px 0 rgba(91, 144, 255, .35); }
.tier-flag { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); white-space: nowrap; font-family: var(--display); font-weight: 800; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: #20180A; background: linear-gradient(180deg, #FBE6AE -10%, var(--gold) 50%, #B98F2C 110%); padding: .45rem 1rem; border-radius: 999px; border: 3px solid #EEF2FB; }
.tier-name { font-family: var(--display); font-weight: 700; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: #5B90FF; }
.tier-pct { font-family: var(--display); font-weight: 800; font-size: 2.4rem; letter-spacing: -.03em; color: #0B1223; line-height: 1.1; margin: .3rem 0; }
.tier-sub { color: #4A5A76; font-size: .85rem; }
.prose-block { max-width: 720px; margin: 0 auto; text-align: left; }
.prose-block p { color: var(--ink-dim); font-size: 1.02rem; line-height: 1.7; margin-bottom: 1rem; }
.cta-row { text-align: center; margin-top: 1.4rem; }
.cta-row .btn-gold { text-decoration: none; }
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; align-items: start; text-align: left; }
.contact-side { display: grid; gap: 12px; }
.contact-card { padding: 1rem 1.1rem; }
.contact-card:hover { transform: none; }
.contact-val { color: var(--ink); font-size: .98rem; margin-top: .3rem; line-height: 1.5; }
.sub-sec .glossary { max-width: 800px; margin: 0 auto; text-align: left; }
.sub-sec--light .glossary dt { color: #0B1223; }
.sub-sec--light .glossary dd { color: #4A5A76; }
.glossary dt { font-family: var(--display); font-weight: 800; margin-top: 16px; font-size: 1rem; }
.glossary dd { margin: 4px 0 0; font-size: .95rem; color: var(--ink-dim); }
body.subpage .btn-skip-float { display: none; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

/* sell page: earning examples carousel */
.ex-sec { background: radial-gradient(120% 90% at 50% 0%, #0B1226 0%, #070B16 70%); }
.ex-sec .sub-h2 { font-size: clamp(1.5rem, 4.4vw, 2.4rem); line-height: 1.12; }
.ex-sec .sub-h2 .gold { display: inline-block; margin-top: .25em; }
.ex-sec .hero-sub { margin-bottom: 1rem; }
.ex-card { flex: 0 0 min(84%, 360px); scroll-snap-align: center; scroll-snap-stop: always; text-align: left;
  background: linear-gradient(180deg, #1C1D22, #17181D); border: 1px solid rgba(91, 144, 255, .45); border-radius: 18px; padding: 1.2rem 1.2rem 1.1rem;
  box-shadow: 0 0 30px 0 rgba(91, 144, 255, .18), 0 24px 60px -34px #000; }
.ex-card:first-child { margin-left: 4%; } .ex-card:last-child { margin-right: 4%; }
.ex-name { font-family: var(--display); font-weight: 800; font-size: 1.4rem; text-transform: uppercase; color: #fff; }
.ex-sit { color: var(--ink-dim); font-size: .95rem; margin: .2rem 0 .9rem; }
.ex-math { background: rgba(27, 92, 255, .10); border: 1px solid rgba(60, 120, 255, .35); border-radius: 12px; padding: .7rem .9rem; }
.ex-math span { display: block; font-family: var(--display); font-weight: 700; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: #8FB4FF; }
.ex-math b { display: block; font-family: var(--display); font-weight: 800; font-size: 1.15rem; color: #fff; margin-top: .2rem; }
.ex-note { color: var(--ink-dim); font-size: .9rem; margin: .8rem 0; line-height: 1.5; }
.ex-total { display: flex; align-items: baseline; gap: .5rem; border-top: 1px solid var(--line); padding-top: .8rem; }
.ex-total small { font-family: var(--display); font-weight: 700; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); }
.ex-total b { font-family: var(--display); font-weight: 800; font-size: 2.2rem; letter-spacing: -.03em; line-height: 1;
  background: linear-gradient(180deg, #7CF0A8 0%, #37C077 50%, #1B7A47 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 0 12px rgba(55, 192, 119, .6)); }
.ex-reassure { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; margin-top: 1.4rem; text-align: left; }
.ex-reassure div { background: rgba(55, 192, 119, .08); border: 1px solid rgba(55, 192, 119, .35); border-radius: 12px; padding: .8rem .9rem; }
.ex-reassure b { display: block; font-family: var(--display); font-weight: 800; font-size: .95rem; color: #7CF0A8; }
.ex-reassure span { color: var(--ink-dim); font-size: .88rem; }
.ex-fine { color: var(--ink-mute); font-size: .78rem; margin-top: 1rem; }

/* example cards as credit cards */
.ex-card--cc { position: relative; overflow: hidden; border-radius: 16px; border: 1px solid rgba(255, 255, 255, .18); padding: 1rem 1.1rem .95rem; color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), inset 0 -1px 0 rgba(0, 0, 0, .45), 0 18px 40px -18px rgba(0, 0, 0, .9); }
.ex-card--cc::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(107deg, rgba(255, 255, 255, .16) 0 18%, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, .07) 78%, rgba(255, 255, 255, 0) 100%); }
.ex-card--cc > * { position: relative; z-index: 1; }
.cc-ex-0 { background: repeating-linear-gradient(100deg, transparent 0 9px, rgba(56, 150, 255, .22) 9px 10px), radial-gradient(120% 80% at 80% 20%, #12305F 0%, #0A1C3F 55%, #050E24 100%); }
.cc-ex-1 { background: linear-gradient(135deg, #523079 0%, #2E1A47 52%, #1B0F2B 100%); }
.cc-ex-2 { background: linear-gradient(135deg, #1B1B1E 0%, #0A0A0C 55%, #151518 100%); }
.cc-ex-3 { background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, .06) 40%, rgba(255, 255, 255, .06) 70%, transparent 70%), linear-gradient(135deg, #0F5A2E 0%, #0A3F20 55%, #072D17 100%); }
.ex-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .8rem; }
.ex-card--cc .chip { width: 34px; height: 25px; border-radius: 5px; flex: none; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 1px 2px rgba(0, 0, 0, .4);
  background: linear-gradient(90deg, transparent 46%, rgba(0, 0, 0, .28) 46% 54%, transparent 54%), linear-gradient(0deg, transparent 46%, rgba(0, 0, 0, .28) 46% 54%, transparent 54%), linear-gradient(135deg, #F3DA92, #C79B33 55%, #9A7420); }
.ex-brand { text-align: right; font-family: var(--display); font-weight: 800; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; line-height: 1.1; }
.ex-brand b { color: var(--gold); }
.ex-brand small { display: block; font-size: .5rem; letter-spacing: .2em; opacity: .75; margin-top: .25rem; font-weight: 700; }
.ex-card--cc .ex-sit { color: rgba(255, 255, 255, .8); }
.ex-card--cc .ex-math { background: rgba(0, 0, 0, .28); border-color: rgba(255, 255, 255, .18); }
.ex-card--cc .ex-math span { color: rgba(255, 255, 255, .7); }
.ex-card--cc .ex-note { color: rgba(255, 255, 255, .75); }
.ex-foot { display: flex; justify-content: space-between; align-items: flex-end; gap: .6rem; border-top: 1px solid rgba(255, 255, 255, .14); padding-top: .8rem; }
.ex-card--cc .ex-name { font-size: 1.25rem; letter-spacing: .08em; text-shadow: 0 1px 0 rgba(255, 255, 255, .35), 0 -1px 0 rgba(0, 0, 0, .55), 0 2px 3px rgba(0, 0, 0, .35); }
.ex-card--cc .ex-name small { display: block; font-size: .5rem; letter-spacing: .2em; opacity: .7; text-shadow: none; margin-bottom: .2rem; }
.ex-card--cc .ex-total { flex-direction: column; align-items: flex-end; gap: .15rem; border: 0; padding: 0; }
.ex-card--cc .ex-total small { color: rgba(255, 255, 255, .7); }
.ex-card--cc .ex-total b { font-size: 1.9rem; }
/* glowing example cards — the family's .plan glow, colour matched per face */
.ex-card--cc { --g: rgba(91, 144, 255, .8); border-color: rgba(255, 255, 255, .28);
  box-shadow: 0 0 0 1px var(--g), 0 0 14px -2px var(--g), 0 0 40px -4px var(--g), inset 0 1px 0 rgba(255, 255, 255, .22), inset 0 -1px 0 rgba(0, 0, 0, .45), 0 24px 60px -30px #000;
  animation: ex-glow 2.8s ease-in-out infinite; }
.cc-ex-1 { --g: rgba(168, 85, 247, .8); }
.cc-ex-2 { --g: rgba(227, 180, 76, .8); }
.cc-ex-3 { --g: rgba(55, 192, 119, .85); }
@keyframes ex-glow { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.08) drop-shadow(0 0 10px var(--g)); } }
@media (prefers-reduced-motion: reduce) { .ex-card--cc { animation: none; } }

/* bank-statement block (sell page) */
.stmt { max-width: 720px; margin: 1.6rem auto 0; text-align: left; background: #F6F3EA; color: #0B1223; border-radius: 6px; padding: 1.2rem 1.3rem 1rem;
  border: 1px solid #D9D3C2; box-shadow: 0 24px 50px -30px rgba(0, 0, 0, .8), inset 0 0 0 1px rgba(255, 255, 255, .6);
  background-image: repeating-linear-gradient(0deg, transparent 0 27px, rgba(11, 18, 35, .035) 27px 28px); font-family: "Courier New", Courier, monospace; }
.stmt-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; border-bottom: 2px solid #0B1223; padding-bottom: .7rem; margin-bottom: .6rem; }
.stmt-brand { font-family: var(--display); font-weight: 800; font-size: 1rem; letter-spacing: .18em; text-transform: uppercase; }
.stmt-brand b { color: #9A7420; }
.stmt-sub { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: #4A5A76; margin-top: .2rem; }
.stmt-meta { text-align: right; font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: #4A5A76; display: grid; gap: .2rem; }
.stmt-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.stmt-table th { text-align: left; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: #4A5A76; padding: .4rem 0; border-bottom: 1px solid #0B1223; }
.stmt-table td { padding: .55rem 0; vertical-align: top; border-bottom: 1px dashed rgba(11, 18, 35, .25); }
.stmt-table td:first-child { font-weight: 700; width: 32%; padding-right: .6rem; }
.stmt-table td:nth-child(2) { color: #33415C; padding-right: .6rem; }
.stmt-amt { text-align: right; white-space: nowrap; font-weight: 700; color: #1B7A47; width: 18%; }
.stmt-table th:last-child { text-align: right; }
.stmt-table tfoot td { border-bottom: 0; border-top: 2px solid #0B1223; font-weight: 700; padding-top: .6rem; }
.stmt-table tfoot tr + tr td { border-top: 0; padding-top: .2rem; }
.stmt-total { font-size: 1rem; color: #0B1223; }
.stmt-total--green { color: #1B7A47; }
.stmt-foot { margin-top: .8rem; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: #4A5A76; text-align: center; border-top: 1px solid rgba(11, 18, 35, .25); padding-top: .6rem; }
@media (max-width: 480px) { .stmt { padding: 1rem .9rem .8rem; } .stmt-table { font-size: .76rem; } .stmt-head { flex-direction: column; gap: .3rem; } .stmt-meta { text-align: left; } }
.ex-track { padding: 28px 0 30px; }
.ex-card--cc { animation: ex-glow2 2.8s ease-in-out infinite; filter: none; }
@keyframes ex-glow { 0%, 100% { filter: none; } 50% { filter: none; } }
@keyframes ex-glow2 {
  0%, 100% { box-shadow: 0 0 0 1px var(--g), 0 0 14px -2px var(--g), 0 0 36px -6px var(--g), inset 0 1px 0 rgba(255, 255, 255, .22), inset 0 -1px 0 rgba(0, 0, 0, .45), 0 24px 60px -30px #000; }
  50% { box-shadow: 0 0 0 1px var(--g), 0 0 22px 0 var(--g), 0 0 60px -4px var(--g), inset 0 1px 0 rgba(255, 255, 255, .22), inset 0 -1px 0 rgba(0, 0, 0, .45), 0 24px 60px -30px #000; }
}
/* examples section on paper */
.ex-sec.sub-sec--light { background: linear-gradient(#F5F8FF, #E4EBF8); }
.ex-sec.sub-sec--light .sub-h2 { color: #0B1223; }
.ex-sec.sub-sec--light .hero-sub { color: #33415C; }
.ex-sec.sub-sec--light .upsell-hint { color: #6B7C99; }
.ex-sec.sub-sec--light .upsell-dots i { background: rgba(11, 18, 35, .2); }
.ex-sec.sub-sec--light .upsell-dots i.on { background: #9A7420; }
.ex-sec.sub-sec--light .ex-fine { color: #6B7C99; }
.ex-sec.sub-sec--light .stmt { box-shadow: 0 24px 50px -30px rgba(11, 18, 35, .6), 0 0 0 1px rgba(11, 18, 35, .06); }
/* light hero variant (sell page): white paper at the top, rip into the dark section below */
.sub-hero--light { position: relative; overflow: visible; z-index: 1; background: linear-gradient(#F5F8FF, #E4EBF8); border-bottom: 0; }
.sub-hero--light .hero-kicker { color: #9A7420; }
.sub-hero--light .sec-title { color: #0B1223; }
.sub-hero--light .hero-sub { color: #33415C; }
.sub-hero--light::after { content: ""; position: absolute; left: 0; right: 0; bottom: -14px; height: 26px; z-index: 2; pointer-events: none; background-repeat: no-repeat; background-size: 100% 26px; transform: scaleY(-1); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='26' viewBox='0 0 600 26' preserveAspectRatio='none'><path d='M0 12.9 Q 0.0 12.9 15.8 14.8 Q 31.6 16.8 46.5 16.1 Q 61.4 15.4 79.7 12.6 Q 98.1 9.7 118.2 9.6 Q 138.3 9.4 157.5 9.6 Q 176.7 9.8 191.8 12.0 Q 206.9 14.1 230.8 12.3 Q 254.7 10.5 271.4 13.5 Q 288.1 16.5 313.5 16.2 Q 338.8 15.9 357.6 18.3 Q 376.4 20.7 390.9 20.0 Q 405.5 19.3 423.0 15.0 Q 440.4 10.7 455.8 11.7 Q 471.3 12.7 495.1 11.9 Q 518.8 11.2 539.8 13.9 Q 560.8 16.7 579.3 16.1 Q 597.7 15.6 598.9 13.5 L600 11.5 L600 26 L0 26 Z' fill='rgba(11,18,35,0.28)'/><path d='M0 11.1 Q 0.0 11.1 15.8 13.0 Q 31.6 15.0 46.5 14.3 Q 61.4 13.6 79.7 10.8 Q 98.1 7.9 118.2 7.8 Q 138.3 7.6 157.5 7.8 Q 176.7 8.0 191.8 10.2 Q 206.9 12.3 230.8 10.5 Q 254.7 8.7 271.4 11.7 Q 288.1 14.7 313.5 14.4 Q 338.8 14.1 357.6 16.5 Q 376.4 18.9 390.9 18.2 Q 405.5 17.5 423.0 13.2 Q 440.4 8.9 455.8 9.9 Q 471.3 10.9 495.1 10.1 Q 518.8 9.4 539.8 12.1 Q 560.8 14.9 579.3 14.3 Q 597.7 13.8 598.9 11.7 L600 9.7 L600 26 L0 26 Z' fill='%23C9D3E6'/><path d='M0 9.9 Q 0.0 9.9 15.8 11.8 Q 31.6 13.8 46.5 13.1 Q 61.4 12.4 79.7 9.6 Q 98.1 6.7 118.2 6.6 Q 138.3 6.4 157.5 6.6 Q 176.7 6.8 191.8 9.0 Q 206.9 11.1 230.8 9.3 Q 254.7 7.5 271.4 10.5 Q 288.1 13.5 313.5 13.2 Q 338.8 12.9 357.6 15.3 Q 376.4 17.7 390.9 17.0 Q 405.5 16.3 423.0 12.0 Q 440.4 7.7 455.8 8.7 Q 471.3 9.7 495.1 8.9 Q 518.8 8.2 539.8 10.9 Q 560.8 13.7 579.3 13.1 Q 597.7 12.6 598.9 10.5 L600 8.5 L600 26 L0 26 Z' fill='%23F5F8FF'/></svg>"); }
.sub-hero--light + .ex-sec { padding-top: clamp(3rem, 7vw, 4.8rem); }

/* ---- sub-page "How it works" as credit-card backs (mirrors .explain-sec .step.ccback) ---- */
.steps--cc .step.ccback { position: relative; padding: 0; overflow: hidden; border-radius: 16px; border: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(135deg, #1F2A44 0%, #131B30 55%, #0E1428 100%); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), inset 0 -1px 0 rgba(0, 0, 0, .5), 0 24px 60px -34px #000; text-align: center; }
.steps--cc .step.ccback::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(107deg, rgba(255, 255, 255, .14) 0 18%, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, .06) 78%, rgba(255, 255, 255, 0) 100%); }
.steps--cc .step.ccback .ccback-panel { margin-top: 26px; }
.steps--cc .step.ccback .ccback-panel::before { content: "AUTHORIZED SIGNATURE · NOT VALID UNLESS SIGNED"; position: absolute; top: -13px; left: 2px; font-family: var(--display); font-weight: 700; font-size: .5rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(244, 247, 255, .55); }
.steps--cc .step:nth-of-type(1) { --s-lite: #FF8A7E; --s: #D6342C; --s-deep: #8E1610; --s-halo: rgba(214, 52, 44, .34); }
.steps--cc .step:nth-of-type(2) { --s-lite: #FFD782; --s: #D99413; --s-deep: #8E5A05; --s-halo: rgba(217, 148, 19, .34); }
.steps--cc .step:nth-of-type(3) { --s-lite: #7CE6A6; --s: #1E9E52; --s-deep: #0B6130; --s-halo: rgba(30, 158, 82, .34); }
.steps--cc .step:nth-of-type(4) { --s-lite: #8FB4FF; --s: #2D6BFF; --s-deep: #0F2F8E; --s-halo: rgba(45, 107, 255, .34); }
.steps--cc .ccback-panel p { font-size: .95rem; line-height: 1.7; }

/* ---- "Why cardholders sell with us" as colourful sticky notes ---- */
.benefit-grid--sticky { gap: 22px 16px; padding-top: 10px; }
.benefit.sticky { position: relative; border: 0; border-radius: 2px; padding: 1.35rem 1.15rem 1.3rem; color: #1A1A1A;
  background: linear-gradient(160deg, var(--n-lite) 0%, var(--n) 60%, var(--n-deep) 100%);
  box-shadow: 0 1px 1px rgba(0, 0, 0, .08), 0 10px 22px -10px rgba(11, 18, 35, .45), 0 22px 30px -22px rgba(11, 18, 35, .5);
  transform: rotate(var(--tilt, -1.2deg)); transition: transform .25s cubic-bezier(.2, .8, .3, 1), box-shadow .25s; }
.benefit.sticky:hover { transform: rotate(0) translateY(-3px) scale(1.02); box-shadow: 0 2px 2px rgba(0, 0, 0, .08), 0 18px 30px -12px rgba(11, 18, 35, .5); z-index: 1; }
.benefit.sticky::after { content: ""; position: absolute; right: 0; bottom: 0; width: 26px; height: 26px;
  background: linear-gradient(135deg, transparent 50%, rgba(0, 0, 0, .10) 50%, rgba(0, 0, 0, .22) 100%); border-top-left-radius: 4px; }
.benefit.sticky .tape { position: absolute; top: -10px; left: 50%; width: 84px; height: 22px; transform: translateX(-50%) rotate(var(--tape, -3deg));
  background: rgba(255, 255, 255, .55); border: 1px solid rgba(255, 255, 255, .7); box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
  backdrop-filter: blur(1px); background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.0) 0 6px, rgba(255,255,255,.35) 6px 8px); }
.benefit.sticky b { color: #141414; font-size: 1.02rem; text-transform: uppercase; letter-spacing: .01em; }
.benefit.sticky span { color: #2B2B2B; }
.benefit-grid--sticky .benefit:nth-child(6n+1) { --n-lite: #FFF6A3; --n: #FFE95C; --n-deep: #F2CF2A; --tilt: -1.6deg; --tape: -4deg; }
.benefit-grid--sticky .benefit:nth-child(6n+2) { --n-lite: #FFC9D9; --n: #FF9DBB; --n-deep: #F27AA1; --tilt: 1.3deg; --tape: 3deg; }
.benefit-grid--sticky .benefit:nth-child(6n+3) { --n-lite: #C9F7D2; --n: #93EBA8; --n-deep: #63D786; --tilt: -.9deg; --tape: 2deg; }
.benefit-grid--sticky .benefit:nth-child(6n+4) { --n-lite: #CFE4FF; --n: #9CC5FF; --n-deep: #6EA6FA; --tilt: 1.7deg; --tape: -2deg; }
.benefit-grid--sticky .benefit:nth-child(6n+5) { --n-lite: #FFDDB8; --n: #FFBE7A; --n-deep: #F79E45; --tilt: -1.1deg; --tape: 4deg; }
.benefit-grid--sticky .benefit:nth-child(6n+6) { --n-lite: #E6D4FF; --n: #CBADFF; --n-deep: #AE88F5; --tilt: 1.1deg; --tape: -3deg; }
@media (prefers-reduced-motion: reduce) { .benefit.sticky, .benefit.sticky:hover { transform: none; } }
.steps--cc { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
.steps--cc .ccback-panel { padding-top: 26px; }
.steps--cc .ccback-panel h3 { padding: 0 34px; }

/* ---- Banks / credit unions we accept (sell page): two marquee rows under the light hero ---- */
.sub-hero--flat::after { content: none; }
.accept-row { position: relative; z-index: 1; border-bottom: 0; padding: 1.2rem 0 1.5rem; background: #fff; }
.accept-row::after { content: ""; position: absolute; left: 0; right: 0; bottom: -14px; height: 26px; z-index: 2; pointer-events: none; background-repeat: no-repeat; background-size: 100% 26px; transform: scaleY(-1); }
.accept-row .bank-row__label--cu { margin-top: 1.25rem; }
.accept-row .bank-track { animation-duration: 60s; }
.accept-row .bank-track--rev { animation-name: cc-slide; }
@keyframes cc-slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.bmark--logo { align-items: center; gap: .45em; color: var(--c); }
.blogo { display: inline-grid; place-items: center; width: 1.7em; height: 1.7em; border-radius: .42em; flex: none; font-style: normal; font-size: .62em; letter-spacing: .02em; color: #fff;
  background: linear-gradient(145deg, color-mix(in srgb, var(--c) 78%, #fff) 0%, var(--c) 55%, color-mix(in srgb, var(--c) 70%, #000) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), 0 2px 5px -2px rgba(0, 0, 0, .45); }
.accept-row + .ex-sec { padding-top: clamp(3rem, 7vw, 4.8rem); }
.accept-row::after { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='26' viewBox='0 0 600 26' preserveAspectRatio='none'><path d='M0 12.9 Q 0.0 12.9 15.8 14.8 Q 31.6 16.8 46.5 16.1 Q 61.4 15.4 79.7 12.6 Q 98.1 9.7 118.2 9.6 Q 138.3 9.4 157.5 9.6 Q 176.7 9.8 191.8 12.0 Q 206.9 14.1 230.8 12.3 Q 254.7 10.5 271.4 13.5 Q 288.1 16.5 313.5 16.2 Q 338.8 15.9 357.6 18.3 Q 376.4 20.7 390.9 20.0 Q 405.5 19.3 423.0 15.0 Q 440.4 10.7 455.8 11.7 Q 471.3 12.7 495.1 11.9 Q 518.8 11.2 539.8 13.9 Q 560.8 16.7 579.3 16.1 Q 597.7 15.6 598.9 13.5 L600 11.5 L600 26 L0 26 Z' fill='rgba(11,18,35,0.28)'/><path d='M0 11.1 Q 0.0 11.1 15.8 13.0 Q 31.6 15.0 46.5 14.3 Q 61.4 13.6 79.7 10.8 Q 98.1 7.9 118.2 7.8 Q 138.3 7.6 157.5 7.8 Q 176.7 8.0 191.8 10.2 Q 206.9 12.3 230.8 10.5 Q 254.7 8.7 271.4 11.7 Q 288.1 14.7 313.5 14.4 Q 338.8 14.1 357.6 16.5 Q 376.4 18.9 390.9 18.2 Q 405.5 17.5 423.0 13.2 Q 440.4 8.9 455.8 9.9 Q 471.3 10.9 495.1 10.1 Q 518.8 9.4 539.8 12.1 Q 560.8 14.9 579.3 14.3 Q 597.7 13.8 598.9 11.7 L600 9.7 L600 26 L0 26 Z' fill='%23C9D3E6'/><path d='M0 9.9 Q 0.0 9.9 15.8 11.8 Q 31.6 13.8 46.5 13.1 Q 61.4 12.4 79.7 9.6 Q 98.1 6.7 118.2 6.6 Q 138.3 6.4 157.5 6.6 Q 176.7 6.8 191.8 9.0 Q 206.9 11.1 230.8 9.3 Q 254.7 7.5 271.4 10.5 Q 288.1 13.5 313.5 13.2 Q 338.8 12.9 357.6 15.3 Q 376.4 17.7 390.9 17.0 Q 405.5 16.3 423.0 12.0 Q 440.4 7.7 455.8 8.7 Q 471.3 9.7 495.1 8.9 Q 518.8 8.2 539.8 10.9 Q 560.8 13.7 579.3 13.1 Q 597.7 12.6 598.9 10.5 L600 8.5 L600 26 L0 26 Z' fill='%23F5F8FF'/></svg>"); }
.sub-h2--hero { margin: 0 0 clamp(1.4rem, 3.5vw, 2rem); }
.sub-sec--light .sub-h2--hero { color: #0B1223; }
.sub-sec--light .steps--cc .step.ccback { box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), inset 0 -1px 0 rgba(0, 0, 0, .5), 0 26px 50px -30px rgba(11, 18, 35, .7); }
/* hero-style title with a faded magnifying glass behind it */
.h2-iconwrap { position: relative; display: block; margin: 0 auto clamp(1.4rem, 3.5vw, 2rem); }
.h2-iconwrap .sub-h2--hero { position: relative; z-index: 1; margin: 0; }
.h2-bg-icon { position: absolute; left: 50%; top: 50%; width: clamp(150px, 42vw, 240px); height: auto; transform: translate(-50%, -52%) rotate(-12deg); color: #6FA0FF; opacity: .32; z-index: 0; pointer-events: none;
  filter: drop-shadow(0 0 22px rgba(91, 144, 255, .55)); }
.sub-sec--light .h2-bg-icon { color: #1B5CFF; opacity: .14; }
.sub-h2--hero { text-transform: uppercase; }
/* two light sections back to back: no torn seam between them (it was drawing a light-on-light bump) */
.sub-sec--light + .sub-sec--light::before { content: none; }
.sub-sec--light:has(+ .sub-sec--light)::after { content: none; }
.sub-sec--light + .sub-sec--light { padding-top: 1.2rem; }

/* ---- "What we look for" as HELLO-my-name-is name tags ---- */
.benefit-grid--tags { gap: 18px 14px; }
.benefit.nametag { padding: 0; border: 0; border-radius: 14px; overflow: hidden; background: #fff; color: #141414; text-align: center;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .6) inset, 0 14px 30px -14px rgba(0, 0, 0, .8), 0 0 0 1px rgba(255, 255, 255, .08);
  transform: rotate(var(--tilt, -1deg)); transition: transform .25s cubic-bezier(.2, .8, .3, 1); }
.benefit.nametag:hover { transform: rotate(0) translateY(-3px); }
.nt-head { background: var(--t); color: #fff; padding: .55rem .8rem .5rem; line-height: 1; }
.nt-head b { display: block; font-family: var(--display); font-weight: 800; font-size: 1.6rem; letter-spacing: .04em; text-transform: uppercase; color: #fff; margin: 0; }
.nt-head small { display: block; font-family: var(--display); font-weight: 700; font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; opacity: .92; margin-top: .2rem; }
.nt-body { position: relative; padding: .9rem 1rem 1.05rem; border: 6px solid var(--t); border-top: 0; border-radius: 0 0 14px 14px; background: #fff;
  background-image: repeating-linear-gradient(0deg, transparent 0 22px, rgba(11, 18, 35, .07) 22px 23px); }
.nt-body b { display: block; font-family: var(--display); font-weight: 800; font-size: 1.55rem; letter-spacing: -.02em; color: #0B1223; margin: 0 0 .3rem; text-transform: none;
  text-decoration: underline; text-decoration-color: var(--t); text-decoration-thickness: 3px; text-underline-offset: 4px; }
.nt-body span { color: #33415C; font-size: .92rem; line-height: 1.55; }
.benefit-grid--tags .benefit:nth-child(4n+1) { --t: #D6342C; --tilt: -1.4deg; }
.benefit-grid--tags .benefit:nth-child(4n+2) { --t: #1B5CFF; --tilt: 1.2deg; }
.benefit-grid--tags .benefit:nth-child(4n+3) { --t: #1E9E52; --tilt: -.8deg; }
.benefit-grid--tags .benefit:nth-child(4n+4) { --t: #D99413; --tilt: 1.5deg; }
@media (prefers-reduced-motion: reduce) { .benefit.nametag, .benefit.nametag:hover { transform: none; } }
.sub-hero--light:has(+ .sub-sec--light)::after { content: none; }
.sub-hero--light + .sub-sec--light::before { content: none; }
.sub-hero--light + .sub-sec--light { padding-top: .6rem; }
.benefit.sticky b a { color: #141414; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }

/* ---- laptop-screen steps (affiliate "How it works") ---- */
.steps--laptop { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; gap: 1.6rem; }
.step.laptop { background: transparent; border: 0; box-shadow: none; padding: 0; text-align: center; }
.step.laptop h3 { color: #0B1223; font-size: 1.35rem; text-transform: uppercase; margin: .9rem 0 .4rem; }
.step.laptop p { color: #4A5A76; }
.lap { position: relative; width: 100%; max-width: 480px; margin: 0 auto; filter: drop-shadow(0 26px 30px rgba(11, 18, 35, .35)); }
.lap-lid { position: relative; margin: 0 6%; padding: 14px 10px 10px; border-radius: 14px 14px 4px 4px; background: linear-gradient(180deg, #2B2F3A, #14161C);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), inset 0 0 0 1px rgba(0, 0, 0, .6); }
.lap-cam { position: absolute; top: 5px; left: 50%; width: 5px; height: 5px; border-radius: 50%; background: #0A0B0F; transform: translateX(-50%); box-shadow: 0 0 0 1.5px #3A3F4C, 0 0 4px 1px rgba(91, 144, 255, .55); }
.lap-screen { aspect-ratio: 16 / 10; border-radius: 6px; overflow: hidden; background: #fff; position: relative; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .5); }
.lap-screen::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, rgba(255, 255, 255, .18) 0 12%, rgba(255, 255, 255, 0) 30%); }
.lap-base { position: relative; height: 14px; border-radius: 0 0 14px 14px / 0 0 10px 10px; background: linear-gradient(180deg, #D5D9E3, #9DA4B4 60%, #6E7585);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .6) inset, 0 3px 4px -2px rgba(0, 0, 0, .5); }
.lap-base i { position: absolute; top: 0; left: 50%; width: 22%; height: 5px; border-radius: 0 0 6px 6px; background: #7B8394; transform: translateX(-50%); }
.scr { position: absolute; inset: 0; font-family: var(--body); font-size: 9px; line-height: 1.3; color: #0B1223; text-align: left; }
/* youtube */
.scr-yt { background: #fff; }
.yt-bar { display: flex; align-items: center; gap: 6px; padding: 5px 7px; border-bottom: 1px solid #E5E5E5; }
.yt-logo { display: inline-flex; align-items: center; gap: 3px; font-family: var(--display); font-weight: 800; font-size: 9px; letter-spacing: -.03em; }
.yt-logo i { width: 13px; height: 9px; border-radius: 3px; background: #FF0000; position: relative; }
.yt-logo i::after { content: ""; position: absolute; left: 5px; top: 2px; border-left: 4px solid #fff; border-top: 2.5px solid transparent; border-bottom: 2.5px solid transparent; }
.yt-search { flex: 1; height: 11px; border-radius: 99px; border: 1px solid #D0D0D0; background: #F8F8F8; padding: 0 6px; font-size: 7px; color: #888; line-height: 10px; }
.yt-av { width: 10px; height: 10px; border-radius: 50%; background: linear-gradient(145deg, #F3DA92, #9A7420); }
.yt-video { position: relative; margin: 5px 7px 0; aspect-ratio: 16 / 6; border-radius: 4px; background: radial-gradient(120% 90% at 50% 100%, #16213F, #070B16); overflow: hidden; }
.yt-play { position: absolute; left: 50%; top: 50%; width: 22px; height: 15px; border-radius: 4px; background: #FF0000; transform: translate(-50%, -50%); }
.yt-play::after { content: ""; position: absolute; left: 9px; top: 4px; border-left: 6px solid #fff; border-top: 3.5px solid transparent; border-bottom: 3.5px solid transparent; }
.yt-prog { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255, 255, 255, .3); }
.yt-prog i { display: block; width: 38%; height: 100%; background: #FF0000; }
.yt-title { padding: 5px 7px 0; font-family: var(--display); font-weight: 700; font-size: 8.5px; }
.yt-ch { display: flex; align-items: center; gap: 5px; padding: 4px 7px 0; }
.yt-chav { width: 14px; height: 14px; border-radius: 50%; background: #1B5CFF; color: #fff; font-size: 5px; font-weight: 800; display: grid; place-items: center; }
.yt-chname { flex: 1; font-weight: 600; font-size: 7.5px; }
.yt-chname small { display: block; font-size: 6px; color: #777; }
.yt-sub { background: #0F0F0F; color: #fff; border-radius: 99px; padding: 2px 7px; font-size: 6.5px; font-weight: 700; }
.yt-desc { margin: 4px 7px 0; padding: 3px 5px; border-radius: 4px; background: #F2F2F2; font-size: 7px; color: #444; }
.yt-desc b { color: #065FD4; }
/* dashboard */
.scr-dash { display: flex; background: #F5F8FF; }
.dash-side { width: 22px; background: #0F1626; padding: 8px 5px; display: grid; gap: 5px; align-content: start; }
.dash-side i { display: block; height: 6px; border-radius: 2px; background: rgba(255, 255, 255, .18); }
.dash-side i.on { background: #1B5CFF; }
.dash-main { flex: 1; padding: 6px 8px; min-width: 0; }
.dash-h { display: flex; align-items: center; justify-content: space-between; font-family: var(--display); font-weight: 800; font-size: 8.5px; margin-bottom: 4px; }
.dash-ok { color: #1E9E52; font-size: 6.5px; }
.dash-pill { background: #E3B44C; color: #20180A; border-radius: 99px; padding: 1px 6px; font-size: 6px; letter-spacing: .06em; text-transform: uppercase; }
.dash-label { font-size: 6px; letter-spacing: .12em; text-transform: uppercase; color: #7C8AA6; margin: 3px 0 2px; font-weight: 700; }
.dash-link { display: flex; align-items: center; gap: 4px; background: #fff; border: 1px solid #C9D3E6; border-radius: 4px; padding: 3px 4px; font-size: 7px; }
.dash-link span { flex: 1; color: #33415C; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-link b { color: #1B5CFF; }
.dash-link em { font-style: normal; background: #1B5CFF; color: #fff; border-radius: 3px; padding: 2px 6px; font-size: 6.5px; font-weight: 700; }
.dash-banners { display: flex; gap: 4px; }
.bn { flex: 1; height: 22px; border-radius: 3px; background: linear-gradient(135deg, #1F2A44, #0E1428); position: relative; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2); }
.bn::after { content: ""; position: absolute; left: 4px; top: 4px; width: 7px; height: 5px; border-radius: 1.5px; background: linear-gradient(135deg, #F3DA92, #9A7420); }
.bn-2 { background: linear-gradient(135deg, #1B5CFF, #0F2F8E); } .bn-3 { background: linear-gradient(135deg, #2B2F3A, #0A0B0F); }
.dash-bars { display: flex; align-items: flex-end; gap: 4px; height: 44px; margin: 2px 0 4px; padding-bottom: 1px; border-bottom: 1px solid #C9D3E6; }
.dash-bars i { display: block; flex: 1; align-self: flex-end; height: var(--h); border-radius: 2px 2px 0 0; background: linear-gradient(180deg, #5B90FF, #1B5CFF); }
.dash-row { display: flex; justify-content: space-between; font-size: 7px; padding: 2px 0; border-bottom: 1px dashed #DCE3F0; color: #33415C; }
.dash-row b { color: #1E9E52; } .dash-row b.pend { color: #D99413; }
.dash-pay { margin-top: 3px; font-size: 7px; color: #33415C; } .dash-pay b { color: #0B1223; }
.steps-fine { text-align: center; color: #7C8AA6; font-size: .78rem; margin-top: 1.2rem; }
/* red / yellow highlight boxes (same build as .gold blue + .gold--green) */
.gold--red { background: linear-gradient(95deg, #FF7A6E 0%, #E4321B 55%, #B5200E 100%); box-shadow: 0 0 34px -4px rgba(228, 50, 27, .85), 0 0 90px -18px rgba(181, 32, 14, .75); }
.gold--yellow { color: #20180A; background: linear-gradient(95deg, #FFE27A 0%, #FFC21A 55%, #E5A800 100%); box-shadow: 0 0 34px -4px rgba(255, 194, 26, .85), 0 0 90px -18px rgba(229, 168, 0, .75); }
/* laptop step titles: hero-style boxes, red / yellow / green in order */
.step.laptop .lap-title { font-size: clamp(1.6rem, 5.4vw, 2.3rem); line-height: 1.1; text-transform: uppercase; letter-spacing: -.02em; margin: 1rem 0 .7rem; }
.step.laptop .lap-title .gold { display: inline-block; padding: .06em .32em .1em; }
.steps--laptop .step:nth-of-type(1) .gold { background: linear-gradient(95deg, #FF7A6E 0%, #E4321B 55%, #B5200E 100%); box-shadow: 0 0 34px -4px rgba(228, 50, 27, .85), 0 0 90px -18px rgba(181, 32, 14, .75); }
.steps--laptop .step:nth-of-type(2) .gold { color: #20180A; background: linear-gradient(95deg, #FFE27A 0%, #FFC21A 55%, #E5A800 100%); box-shadow: 0 0 34px -4px rgba(255, 194, 26, .85), 0 0 90px -18px rgba(229, 168, 0, .75); }
.steps--laptop .step:nth-of-type(3) .gold { background: linear-gradient(95deg, #7CF0A8 0%, #37C077 55%, #1E9E52 100%); box-shadow: 0 0 34px -4px rgba(55, 192, 119, .85), 0 0 90px -18px rgba(30, 158, 82, .75); }

/* ---- tan file folders with a sticky-note title stuck on each (affiliate program terms) ---- */
.benefit-grid--folders { gap: 26px 16px; padding-top: 14px; }
.benefit.folder { position: relative; padding: 0; border: 0; border-radius: 6px 10px 10px 10px; margin-top: 18px; color: #2B2314;
  background: linear-gradient(180deg, #EBD9AE 0%, #E1C88F 60%, #D6B97A 100%); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55), 0 14px 26px -14px rgba(11, 18, 35, .55), 0 26px 34px -24px rgba(11, 18, 35, .5); }
.benefit.folder::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 100%; border-radius: inherit; pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(0, 0, 0, 0) 0 22px, rgba(0, 0, 0, .025) 22px 23px); }
.benefit.folder .ftab { position: absolute; left: 14px; top: -18px; width: 42%; height: 24px; border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #F0E0B8, #E6CF98); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6); }
.benefit.folder .ftab::after { content: ""; position: absolute; right: -10px; bottom: 0; border-left: 10px solid #E6CF98; border-top: 24px solid transparent; }
.benefit.folder .fbody { position: relative; padding: 1.4rem 1.1rem 1.15rem; margin: 10px 8px 8px; border-radius: 4px; background: #FCFAF3; min-height: 88px;
  background-image: repeating-linear-gradient(0deg, transparent 0 21px, rgba(43, 35, 20, .08) 21px 22px); box-shadow: 0 1px 2px rgba(0, 0, 0, .18), 0 0 0 1px rgba(0, 0, 0, .04); }
.benefit.folder .fbody span { display: block; color: #3A3120; font-size: .95rem; line-height: 22px; padding-top: 1.35rem; }
.benefit.folder .fnote { position: absolute; right: 12px; top: -12px; z-index: 2; max-width: 68%; padding: .55rem .75rem .6rem; border-radius: 2px;
  background: linear-gradient(160deg, var(--n-lite) 0%, var(--n) 60%, var(--n-deep) 100%); transform: rotate(var(--tilt, 2deg));
  box-shadow: 0 1px 1px rgba(0, 0, 0, .1), 0 8px 16px -8px rgba(11, 18, 35, .55); }
.benefit.folder .fnote::before { content: ""; position: absolute; top: -7px; left: 50%; width: 46px; height: 14px; transform: translateX(-50%) rotate(-3deg);
  background: rgba(255, 255, 255, .55); border: 1px solid rgba(255, 255, 255, .7); }
.benefit.folder .fnote b { display: block; font-family: var(--display); font-weight: 800; font-size: .95rem; letter-spacing: .01em; text-transform: uppercase; color: #141414; line-height: 1.15; margin: 0; }
.benefit-grid--folders .benefit:nth-child(6n+1) { --n-lite: #FFF6A3; --n: #FFE95C; --n-deep: #F2CF2A; --tilt: 2.2deg; }
.benefit-grid--folders .benefit:nth-child(6n+2) { --n-lite: #FFC9D9; --n: #FF9DBB; --n-deep: #F27AA1; --tilt: -1.8deg; }
.benefit-grid--folders .benefit:nth-child(6n+3) { --n-lite: #C9F7D2; --n: #93EBA8; --n-deep: #63D786; --tilt: 1.6deg; }
.benefit-grid--folders .benefit:nth-child(6n+4) { --n-lite: #CFE4FF; --n: #9CC5FF; --n-deep: #6EA6FA; --tilt: -2.2deg; }
.benefit-grid--folders .benefit:nth-child(6n+5) { --n-lite: #FFDDB8; --n: #FFBE7A; --n-deep: #F79E45; --tilt: 1.9deg; }
.benefit-grid--folders .benefit:nth-child(6n+6) { --n-lite: #E6D4FF; --n: #CBADFF; --n-deep: #AE88F5; --tilt: -1.5deg; }
.dash-row .pd { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--c); margin-right: 4px; vertical-align: middle; }
/* partner-type marquee (affiliates): two rows, no rip into the light section below */
.biz-row .bank-scroll--2 { margin-top: .8rem; }
.biz-row + .sub-sec--light { padding-top: 1.2rem; }
.biz-row:has(+ .sub-sec--light)::after { content: none; }
.biz-row + .sub-sec--light::before { content: none; }
.bcheck { display: inline-grid; place-items: center; width: 1.45em; height: 1.45em; border-radius: 50%; flex: none; font-style: normal; font-size: .7em; color: #fff;
  background: linear-gradient(145deg, #7CF0A8, #37C077 55%, #1E9E52); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45), 0 2px 6px -2px rgba(30, 158, 82, .7); }
.sub-sec:not(.sub-sec--light) .step.laptop p { color: var(--ink-dim); }
.sub-sec:not(.sub-sec--light) .lap { filter: drop-shadow(0 26px 30px rgba(0, 0, 0, .6)); }
.sub-sec:not(.sub-sec--light) .lap-base { background: linear-gradient(180deg, #B9C0CE, #7E8698 60%, #565D6C); }
.sub-sec:not(.sub-sec--light) .steps-fine { color: var(--ink-mute); }
.accept-row + .sub-sec { padding-top: clamp(3rem, 7vw, 4.8rem); }
/* wholesale laptop screens: form fields, button, tier track */
.dash-field { display: flex; justify-content: space-between; align-items: center; background: #fff; border: 1px solid #C9D3E6; border-radius: 4px; padding: 3px 5px; font-size: 7px; color: #33415C; }
.dash-field em { font-style: normal; color: #7C8AA6; }
.dash-btn { margin-top: 5px; background: linear-gradient(180deg, #3C78FF, #1B5CFF); color: #fff; border-radius: 4px; padding: 4px; text-align: center; font-family: var(--display); font-weight: 800; font-size: 7px; letter-spacing: .06em; text-transform: uppercase; box-shadow: 0 2px 6px -2px rgba(27, 92, 255, .8); }
.dash-track { position: relative; height: 7px; border-radius: 99px; background: #DCE3F0; margin: 3px 0 12px; }
.dash-track i { position: absolute; left: 0; top: 0; bottom: 0; width: var(--w); border-radius: 99px; background: linear-gradient(90deg, #7CF0A8, #1E9E52); }
.dash-track span { position: absolute; top: 9px; transform: translateX(-50%); font-size: 5.5px; letter-spacing: .1em; text-transform: uppercase; color: #7C8AA6; font-weight: 700; white-space: nowrap; }
.dash-track span:last-child { transform: translateX(-100%); }
/* branded storefront screen (wholesale) */
.scr-site { background: #0B1226; color: #fff; }
.site-url { display: flex; align-items: center; gap: 3px; padding: 4px 6px; background: #1C1D22; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.site-url i { width: 5px; height: 5px; border-radius: 50%; background: #FF5F57; } .site-url i:nth-child(2) { background: #FEBC2E; } .site-url i:nth-child(3) { background: #28C840; }
.site-url span { flex: 1; margin-left: 4px; background: #2B2F3A; border-radius: 99px; padding: 1px 6px; font-size: 6.5px; color: #9FAEC9; }
.site-head { display: flex; align-items: center; gap: 4px; padding: 5px 7px; }
.site-logo { width: 12px; height: 12px; border-radius: 3px; background: linear-gradient(145deg, #F3DA92, #9A7420); color: #20180A; font-size: 5.5px; font-weight: 800; display: grid; place-items: center; }
.site-head b { flex: 1; font-family: var(--display); font-weight: 800; font-size: 7.5px; letter-spacing: .04em; text-transform: uppercase; }
.site-head em { font-style: normal; background: #1B5CFF; color: #fff; border-radius: 99px; padding: 2px 6px; font-size: 6px; font-weight: 700; }
.site-hero { padding: 2px 7px 5px; text-align: center; }
.site-hero b { display: block; font-family: var(--display); font-weight: 800; font-size: 9.5px; text-transform: uppercase; letter-spacing: -.01em; }
.site-hero span { display: inline-block; background: linear-gradient(95deg, #59A9FF, #2B7FFF); border-radius: 2px; padding: 1px 4px; font-family: var(--display); font-weight: 800; font-size: 7px; text-transform: uppercase; margin-top: 1px; }
.site-cards { display: flex; gap: 4px; padding: 0 7px; }
.site-card { flex: 1; background: #fff; color: #0B1223; border-radius: 4px; padding: 4px 4px 3px; text-align: center; }
.site-card i { display: block; height: 14px; border-radius: 2px; background: linear-gradient(135deg, var(--c), color-mix(in srgb, var(--c) 55%, #000)); margin-bottom: 3px; }
.site-card b { display: block; font-family: var(--display); font-weight: 800; font-size: 6.5px; }
.site-card span { display: block; font-size: 5.5px; color: #4A5A76; }
.site-card em { display: block; margin-top: 2px; font-style: normal; background: linear-gradient(180deg, #FBE6AE, #E3B44C 60%, #B98F2C); color: #20180A; border-radius: 2px; font-size: 5.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: 1px 0; }
.site-foot { margin: 5px 7px 0; text-align: center; font-size: 6px; color: #9FAEC9; letter-spacing: .04em; }
.steps--laptop .step:nth-of-type(4) .gold { background: linear-gradient(95deg, #59A9FF 0%, #3B8EF7 55%, #2B7FFF 100%); box-shadow: 0 0 34px -4px rgba(89, 169, 255, .85), 0 0 90px -18px rgba(43, 127, 255, .75); }

/* ---- wholesale tiers as credit cards: silver / gold / black ---- */
.tiers--cc { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 22px; gap: 18px; }
.tier-cc { position: relative; overflow: visible; aspect-ratio: 1.586; border: 0; border-radius: 18px; padding: 1.1rem 1.2rem 1rem; text-align: left; color: #fff; display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), inset 0 -1px 0 rgba(0, 0, 0, .35), 0 24px 40px -22px rgba(0, 0, 0, .8); }
.tier-cc::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: linear-gradient(107deg, rgba(255, 255, 255, .22) 0 18%, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, .08) 78%, rgba(255, 255, 255, 0) 100%); }
.tier-cc > * { position: relative; z-index: 1; }
.tc-silver { background: linear-gradient(135deg, #E9EDF4 0%, #B9C2D1 45%, #8E98AA 100%); color: #0B1223; }
.tc-gold { background: linear-gradient(135deg, #F7E3A1 0%, #D9B34E 45%, #9A7420 100%); color: #20180A; }
.tc-black { background: linear-gradient(135deg, #2A2B31 0%, #101115 50%, #1A1B20 100%); color: #fff; }
.tc-top { display: flex; align-items: center; gap: .6rem; }
.tier-cc .chip { width: 38px; height: 28px; border-radius: 6px; flex: none; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 1px 2px rgba(0, 0, 0, .4);
  background: linear-gradient(90deg, transparent 46%, rgba(0, 0, 0, .28) 46% 54%, transparent 54%), linear-gradient(0deg, transparent 46%, rgba(0, 0, 0, .28) 46% 54%, transparent 54%), linear-gradient(135deg, #F3DA92, #C79B33 55%, #9A7420); }
.tc-black .chip { background: linear-gradient(90deg, transparent 46%, rgba(0, 0, 0, .28) 46% 54%, transparent 54%), linear-gradient(0deg, transparent 46%, rgba(0, 0, 0, .28) 46% 54%, transparent 54%), linear-gradient(135deg, #E9EDF4, #A9B2C2 55%, #6E7787); }
.tc-wave { display: inline-flex; align-items: center; gap: 2px; height: 20px; }
.tc-wave i { display: block; width: 6px; height: 12px; border: 2px solid currentColor; border-left: 0; border-radius: 0 10px 10px 0; opacity: .6; }
.tc-wave i:nth-child(2) { height: 16px; } .tc-wave i:nth-child(3) { height: 20px; }
.tc-brand { margin-left: auto; text-align: right; font-family: var(--display); font-weight: 800; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; line-height: 1.1; }
.tc-brand b { color: inherit; opacity: .8; }
.tc-black .tc-brand b { color: var(--gold); opacity: 1; }
.tc-brand small { display: block; font-size: .46rem; letter-spacing: .2em; opacity: .7; margin-top: .2rem; font-weight: 700; }
.tier-cc .tier-pct { font-size: clamp(2.6rem, 10vw, 3.4rem); margin: .2rem 0 0; color: inherit; letter-spacing: -.03em; line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .35), 0 -1px 0 rgba(0, 0, 0, .45), 0 2px 3px rgba(0, 0, 0, .3); }
.tc-num { font-family: var(--display); font-weight: 700; font-size: .95rem; letter-spacing: .16em; opacity: .75; margin-top: .1rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .3), 0 -1px 0 rgba(0, 0, 0, .45); }
.tc-foot { display: flex; justify-content: space-between; align-items: flex-end; gap: .6rem; }
.tier-cc .tier-name { color: inherit; font-size: .95rem; letter-spacing: .1em; text-shadow: 0 1px 0 rgba(255, 255, 255, .3), 0 -1px 0 rgba(0, 0, 0, .45); }
.tier-cc .tier-name small { display: block; font-size: .46rem; letter-spacing: .22em; opacity: .7; text-shadow: none; }
.tier-cc .tier-sub { color: inherit; opacity: .85; font-size: .78rem; text-align: right; max-width: 55%; }
.tier-cc.tier--hot { box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), 0 0 0 2px rgba(255, 225, 150, .7), 0 0 26px -2px rgba(227, 180, 76, .8), 0 24px 40px -22px rgba(0, 0, 0, .8); }
.tier-cc .tier-flag { border-color: #0B1226; background: #1B5CFF; color: #fff; }
.sub-sec--light .tier-cc .tier-flag { border-color: #EEF2FB; }
.tier-cc > .tier-flag { position: absolute; z-index: 3; }
.tier-cc .tc-top { justify-content: flex-end; }

/* ---- tier example receipts under each card ---- */
.tier-wrap { display: grid; gap: 0; }
.tier-ex { position: relative; margin: -10px 14px 0; padding: 22px 16px 18px; background: #FCFCF7; color: #0B1223; text-align: left; font-size: .9rem;
  background-image: repeating-linear-gradient(0deg, transparent 0 23px, rgba(11, 18, 35, .05) 23px 24px); box-shadow: 0 14px 26px -16px rgba(11, 18, 35, .55); z-index: 0;
  -webkit-mask: linear-gradient(#000, #000) top / 100% calc(100% - 8px) no-repeat, radial-gradient(circle at 6px 4px, transparent 5px, #000 5.5px) bottom / 12px 8px repeat-x; mask: linear-gradient(#000, #000) top / 100% calc(100% - 8px) no-repeat, radial-gradient(circle at 6px 4px, transparent 5px, #000 5.5px) bottom / 12px 8px repeat-x; }
.rc-per { display: inline-block; font-family: var(--display); font-weight: 800; font-size: .95rem; text-transform: uppercase; letter-spacing: .02em; color: #0B1223; background: linear-gradient(95deg, #7CF0A8, #37C077 55%, #1E9E52); padding: .2em .55em .25em; border-radius: 3px; margin-bottom: .7rem; }
.rc-head { font-family: var(--display); font-weight: 700; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: #7C8AA6; margin-bottom: .35rem; }
.rc-row { display: flex; justify-content: space-between; align-items: baseline; line-height: 24px; color: #33415C; }
.rc-row b { font-family: var(--display); font-weight: 700; color: #0B1223; }
.rc-sum { border-top: 1px dashed #C9D3E6; margin-top: 2px; }
.rc-green, .rc-green b { color: #1B7A47; }
.rc-total { display: flex; justify-content: space-between; align-items: center; gap: .6rem; margin-top: .55rem; padding: .55rem .7rem; border-radius: 6px; background: #0B1226; color: #fff; }
.rc-total span { font-family: var(--display); font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: #9FAEC9; }
.rc-total b { font-family: var(--display); font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em; color: #7CF0A8; text-shadow: 0 0 14px rgba(55, 192, 119, .6); }
.tiers-fine { text-align: center; color: #7C8AA6; font-size: .78rem; margin: -6px 0 18px; }
.gold--gold { color: #20180A; background: linear-gradient(95deg, #FBE6AE 0%, #E3B44C 50%, #B98F2C 100%); box-shadow: 0 0 34px -4px rgba(227, 180, 76, .85), 0 0 90px -18px rgba(154, 116, 32, .75); }
.rc-total { flex-direction: column; align-items: flex-start; gap: .1rem; border-radius: 6px 6px 0 0; padding: .55rem .7rem .5rem; }
.rc-total small { font-size: .7rem; color: #9FAEC9; }
.rc-keeps { border: 1.5px solid #0B1226; border-top: 0; border-radius: 0 0 6px 6px; padding: .2rem .7rem .3rem; background: #fff; }
.rc-keep { line-height: 30px; border-bottom: 1px dashed #DCE3F0; }
.rc-keep:last-child { border-bottom: 0; }
.rc-keep b { font-size: 1.1rem; color: #1B7A47; }
.rc-keep--top b { font-size: 1.5rem; color: #1E9E52; text-shadow: 0 0 12px rgba(55, 192, 119, .45); }
.rc-keep--top span { font-weight: 600; color: #0B1223; }
.site-town { font-style: normal; color: var(--gold); background: none; border-radius: 0; padding: 0; font-size: inherit; }
.prose-block--center { text-align: center; }
.prose-block--center p { color: var(--ink-dim); }

/* ---- Pick your lane: buy / sell / broker ---- */
.lanes-sec { position: relative; padding: clamp(2.6rem, 6vw, 4.4rem) 0 clamp(3rem, 6vw, 4.6rem); text-align: center; background: radial-gradient(120% 90% at 50% 0%, #0B1226 0%, #070B16 70%); border-top: 1px solid var(--line); }
.lanes-sec .sec-title { margin-bottom: clamp(1.6rem, 4vw, 2.6rem); text-transform: uppercase; }
.lanes { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; max-width: 1040px; margin: 0 auto; }
.lane { display: flex; flex-direction: column; align-items: center; gap: .6rem; padding: 1.6rem 1.2rem 1.5rem; border-radius: 18px; text-decoration: none; color: var(--ink);
  background: linear-gradient(180deg, #1C1D22, #15161B); border: 1px solid rgba(255, 255, 255, .1); box-shadow: 0 24px 60px -34px #000; transition: transform .25s cubic-bezier(.2, .8, .3, 1), border-color .25s, box-shadow .25s; }
.lane:hover { transform: translateY(-4px); border-color: var(--lane, #59A9FF); box-shadow: 0 0 0 1px var(--lane, #59A9FF), 0 0 40px -10px var(--lane, #59A9FF), 0 24px 60px -34px #000; }
.lane--buy { --lane: #59A9FF; } .lane--sell { --lane: #37C077; } .lane--broker { --lane: #E3B44C; }
.lane-ico { width: 96px; height: 72px; color: var(--lane); filter: drop-shadow(0 0 14px color-mix(in srgb, var(--lane) 55%, transparent)); margin-bottom: .2rem; }
.lane-title { display: flex; flex-direction: column; align-items: center; gap: .1em; font-size: clamp(1.7rem, 5.6vw, 2.2rem); line-height: 1; text-transform: uppercase; letter-spacing: -.02em; color: #fff; }
.lane-title .gold { padding: .04em .28em .08em; }
.lane p { color: var(--ink-dim); font-size: .95rem; line-height: 1.6; max-width: 30ch; margin: .2rem 0 .4rem; }
.lane-btn { margin-top: auto; font-size: .8rem; padding: .8rem 1.3rem; }
.lane-btn::after { content: " \2192"; }
.steps--laptop { gap: 3.2rem; }
.step.laptop p { margin-bottom: .2rem; }
/* landing how-tradelines-work: stack the card backs one per row so they keep a card shape */
.explain-sec .steps { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
.explain-sec .ccback-panel h3 { padding: 0 34px; }
/* guarantee envelopes: one per row too */
.guarantee-sec .steps { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---- floating section menu (catalog) ---- */
.float-menu { position: fixed; left: 50%; bottom: 18px; z-index: 45; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.float-menu__btn { padding: .9rem 1.6rem; font-size: .85rem; box-shadow: 0 14px 34px -10px rgba(27, 92, 255, .9), 0 0 0 1px rgba(255, 255, 255, .12); cursor: pointer; border: 0; }
.float-menu__btn::after { content: none; }
.float-menu__btn .skip-arrow--up { animation: skip-bob-up 1.1s ease-in-out infinite; }
.float-menu__btn.open .skip-arrow--up { animation: none; transform: rotate(180deg); }
@keyframes skip-bob-up { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
.float-menu__panel { display: flex; gap: 6px; padding: 6px; max-width: calc(100vw - 24px); border-radius: 16px; background: linear-gradient(180deg, #1C1D22, #15161B); border: 1px solid rgba(91, 144, 255, .45);
  box-shadow: 0 0 30px 0 rgba(91, 144, 255, .18), 0 30px 60px -30px #000; animation: menu-in .22s cubic-bezier(.2, .8, .3, 1) both; }
@keyframes menu-in { from { opacity: 0; transform: translateY(10px) scale(.96); } to { opacity: 1; transform: none; } }
.float-menu__panel a { display: block; padding: .7rem .8rem; border-radius: 10px; text-decoration: none; text-align: center; white-space: nowrap;
  font-family: var(--display); font-weight: 800; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .08); }
.float-menu__panel a:hover { background: rgba(27, 92, 255, .25); border-color: rgba(91, 144, 255, .6); }
.float-menu__panel a:nth-child(1) { border-top: 3px solid #E4321B; }
.float-menu__panel a:nth-child(2) { border-top: 3px solid #37C077; }
.float-menu__panel a:nth-child(3) { border-top: 3px solid #E3B44C; }
body.subpage .float-menu { display: none; }

/* ---- floating buttons hang from the sticky header instead of the bottom edge ---- */
/* Tradelines ↓ stays a bottom floating pill above the catalog; only the Sections menu hangs from the header */
.float-menu { top: var(--header-h, 72px); bottom: auto; margin-top: -4px; z-index: 39; flex-direction: column-reverse; gap: 8px; }
.float-menu__btn { border-radius: 0 0 16px 16px; padding: .55rem 1.5rem .7rem; font-size: .78rem; box-shadow: 0 14px 30px -10px rgba(27, 92, 255, .9), inset 0 -1px 0 rgba(255, 255, 255, .12); }
.float-menu__btn .skip-arrow--up { animation: none; transform: rotate(180deg); }
.float-menu__btn.open .skip-arrow--up { transform: rotate(0); }
@keyframes menu-in { from { opacity: 0; transform: translateY(-10px) scale(.96); } to { opacity: 1; transform: none; } }
.float-menu[hidden], .float-menu__panel[hidden] { display: none; }

/* ---- purchase notification banner (iOS style, top-left over the logo) ---- */
.sp-toast { position: fixed; top: 10px; left: 10px; z-index: 60; display: flex; align-items: center; gap: 10px; width: min(360px, calc(100vw - 20px)); padding: 10px 12px; border-radius: 18px; cursor: pointer;
  background: rgba(28, 29, 34, .92); color: #fff; border: 1px solid rgba(255, 255, 255, .14); box-shadow: 0 14px 40px -10px rgba(0, 0, 0, .8), 0 0 0 1px rgba(0, 0, 0, .4);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); opacity: 0; transform: translateY(-24px) scale(.96); transition: transform .45s cubic-bezier(.2, .8, .3, 1), opacity .35s; }
.sp-toast.show { opacity: 1; transform: none; }
.sp-toast[hidden] { display: none; }
.sp-icon { flex: none; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: .85rem; color: #20180A;
  background: linear-gradient(145deg, #F3DA92, #C79B33 55%, #9A7420); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5); }
.sp-body { display: grid; gap: 2px; min-width: 0; }
.sp-head { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.sp-head b { font-family: var(--display); font-weight: 800; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
.sp-head small { color: #9FAEC9; font-size: .68rem; }
.sp-text { font-size: .85rem; line-height: 1.35; color: #E8EDF8; }
.sp-text b { color: #fff; }

/* ---- D-3 inventory states: RESTOCKING / SOLD OUT storefront ---- */
.inventory-notice { text-align: center; margin: 0 0 clamp(1.6rem, 4vw, 2.4rem); padding: clamp(1.2rem, 3.5vw, 1.8rem) clamp(1rem, 4vw, 1.6rem); border-radius: 18px;
  background: linear-gradient(180deg, #1C1D22, #15161B); border: 1px solid rgba(255, 90, 60, .45); box-shadow: 0 0 34px -8px rgba(228, 50, 27, .55), 0 24px 60px -34px #000; }
.inventory-notice[hidden] { display: none; }
.inv-pill { display: inline-block; font-family: var(--display); font-weight: 800; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: #fff;
  background: linear-gradient(135deg, #FF5A3C, #E4321B 60%, #B3161B); padding: .45rem .9rem; border-radius: 999px; box-shadow: 0 6px 18px -6px rgba(228, 50, 27, .9); }
.inv-msg { color: #fff; font-family: var(--display); font-weight: 700; font-size: clamp(1.05rem, 3.2vw, 1.3rem); line-height: 1.35; margin: .9rem auto .5rem; max-width: 34ch; text-wrap: balance; }
.inv-sub { color: var(--ink-dim); font-size: .92rem; max-width: 46ch; margin: 0 auto 1rem; }
.inv-sub b { color: #fff; }
.inv-cta { display: inline-flex; }
.card--example { position: relative; }
.card--example .ccface { filter: saturate(.55) brightness(.85); }
.example-ribbon { position: absolute; top: 28px; left: 14px; z-index: 2; font-family: var(--display); font-weight: 800; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: #fff; background: linear-gradient(135deg, #FF5A3C, #E4321B 60%, #B3161B); padding: .4rem .7rem; border-radius: 999px; box-shadow: 0 6px 18px -6px rgba(228, 50, 27, .9), inset 0 1px 0 rgba(255, 255, 255, .35); }
.card.card--example .card-price .now { color: var(--ink-dim); text-shadow: none; }
.card--example .card-dates { color: var(--ink-mute); }
.example-note { font-family: var(--display); font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: #E4321B; text-align: center; margin-bottom: .6rem; }
.card .btn-add.btn-priority { background: linear-gradient(180deg, var(--cta-hi), var(--cta)); color: #fff; box-shadow: 0 14px 34px -10px rgba(27, 92, 255, .9); }
.btn-priority:hover { filter: brightness(1.08); }
body[data-inventory="RESTOCKING"] .cart-btn, body[data-inventory="SOLD_OUT"] .cart-btn { display: none; }
#priority-modal .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
#priority-modal .lead-form label { display: block; font-size: .86rem; color: var(--ink-dim); margin-bottom: 12px; }
#priority-modal .lead-form input, #priority-modal .lead-form select { width: 100%; margin-top: .4rem; }
#priority-modal .form-msg { text-align: center; min-height: 1.2em; margin-top: .6rem; }
@media (max-width: 480px) { #priority-modal .form-row { grid-template-columns: 1fr; gap: 0; } }
.results-sec[hidden], #float-menu-panel a[hidden] { display: none; }

/* client results: empty state until real screenshots exist; screenshots render in the existing .result-shot frame */
.results-empty { grid-column: 1 / -1; scroll-snap-align: start; min-width: min(100%, 520px); padding: 2rem 1.4rem; text-align: center; color: var(--ink-dim); font-size: .95rem;
  border: 1px dashed rgba(255, 255, 255, .18); border-radius: 18px; background: rgba(255, 255, 255, .03); }
.result-shot img { display: block; width: 100%; height: 100%; object-fit: cover; }
#results .upsell-hint[hidden] { display: none; }

/* AU details page + success-view link */
.au-link { display: inline-block; margin-top: .4rem; color: var(--gold); font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(227, 180, 76, .5); }
.au-sec { padding: clamp(2rem, 5vw, 3.4rem) 0; }
.au-wrap { max-width: 620px; margin: 0 auto; }
.au-order { display: flex; flex-wrap: wrap; gap: 8px 14px; margin: .6rem 0 1rem; font-size: .9rem; color: var(--ink-dim); }
.au-order b { color: #fff; }
.au-lines { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: 6px; }
.au-lines li { background: rgba(255, 255, 255, .05); border: 1px solid var(--line); border-radius: 10px; padding: .55rem .8rem; font-size: .9rem; color: #fff; }
.au-sec .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.au-sec .form-row--3 { grid-template-columns: 2fr 1fr 1fr; }
.au-sec .choice { display: grid; gap: 8px; margin: .2rem 0 1rem; }
.au-sec .choice label { display: flex; gap: .6rem; align-items: flex-start; background: rgba(255, 255, 255, .04); border: 1px solid var(--line); border-radius: 12px; padding: .7rem .8rem; cursor: pointer; color: var(--ink); font-size: .92rem; margin: 0; }
.au-sec .choice input { width: auto; margin: .25rem 0 0; accent-color: var(--cta); }
.au-sec .attest { display: flex; gap: .6rem; align-items: flex-start; background: rgba(27, 92, 255, .08); border: 1px solid rgba(91, 144, 255, .35); border-radius: 12px; padding: .75rem .85rem; font-size: .9rem; color: var(--ink); margin: .2rem 0 1rem; }
.au-sec .attest input { width: auto; margin: .25rem 0 0; accent-color: var(--cta); }
.au-state { text-align: center; padding: 2rem 1rem; }
.au-state h3 { text-transform: uppercase; margin-bottom: .5rem; }
.au-state p { color: var(--ink-dim); max-width: 46ch; margin: 0 auto; }
@media (max-width: 480px) { .au-sec .form-row, .au-sec .form-row--3 { grid-template-columns: 1fr; gap: 0; } }

/* AU form: split name row; launch-disabled issuer cards */
.form-row--2{display:grid;grid-template-columns:1fr 1fr;gap:.6rem}
@media (max-width:520px){.form-row--2{grid-template-columns:1fr}}
.card--later .example-ribbon{background:#6b7280}
.card--later{opacity:.85}
