/* ============================================================
   BILLXO — Premium Landing System
   Self-contained stylesheet for the marketing homepage.
   Editorial-fintech aesthetic. No external CSS framework.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --ink: #0C0F12;
  --ink-2: #161B20;
  --muted: #586069;
  --muted-2: #8A929B;

  --paper: #FAFAF7;
  --paper-2: #F2F2EC;
  --white: #FFFFFF;

  --line: rgba(12, 15, 18, .09);
  --line-2: rgba(12, 15, 18, .055);

  --cyan: #17C4DC;
  --cyan-600: #0BAFC8;
  --cyan-700: #0A8DA1;
  --cyan-tint: #E4F8FB;
  --cyan-ink: #063A44;

  --yellow: #FFCF4A;
  --yellow-tint: #FCF4DE;
  --yellow-ink: #4A3A11;

  --mint: #57DCA2;
  --mint-strong: #C4EFDB;
  --mint-tint: #E9F7EF;
  --mint-ink: #0E3A2A;

  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 28px;

  --shadow-xs: 0 1px 2px rgba(12, 15, 18, .05);
  --shadow-sm: 0 4px 14px -6px rgba(12, 15, 18, .14);
  --shadow-md: 0 14px 40px -18px rgba(12, 15, 18, .22);
  --shadow-lg: 0 40px 80px -30px rgba(12, 15, 18, .32);

  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-out: cubic-bezier(.22, .61, .36, 1);

  --sans: 'Instrument Sans', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--cyan); color: #042027; }

/* ---------- Layout ---------- */
.bx-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.bx-section { position: relative; padding-block: clamp(72px, 11vw, 148px); }
.bx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.bx-eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--cyan-600);
  display: inline-block;
}
.bx-eyebrow--center::before { display: none; }

/* ---------- Typography ---------- */
.bx-display {
  font-family: var(--serif);
  font-weight: 500;
  font-optical-sizing: auto;
  letter-spacing: -.02em;
  line-height: 1.02;
  color: var(--ink);
}
h1.bx-display { font-size: clamp(2.6rem, 6.4vw, 4.7rem); }
h2.bx-display { font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.05; }
h3.bx-display { font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.1; }
.bx-display em { font-style: italic; color: var(--cyan-700); }
.bx-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--muted);
  line-height: 1.65;
  max-width: 46ch;
}
.bx-kicker {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

/* ---------- Buttons ---------- */
.bx-btn {
  --bg: var(--ink);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -.01em;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s var(--ease), color .3s var(--ease);
  will-change: transform;
}
.bx-btn svg { width: 17px; height: 17px; transition: transform .35s var(--ease); }
.bx-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.bx-btn:hover svg { transform: translateX(4px); }
.bx-btn--primary { --bg: var(--ink); --fg: #fff; }
.bx-btn--cyan { --bg: var(--cyan); --fg: #042027; box-shadow: 0 10px 26px -12px rgba(23, 196, 220, .8); }
.bx-btn--cyan:hover { box-shadow: 0 16px 36px -12px rgba(23, 196, 220, .95); }
.bx-btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  border-color: var(--line);
}
.bx-btn--ghost:hover { border-color: var(--ink); box-shadow: none; }
.bx-btn--light { --bg: #fff; --fg: var(--ink); box-shadow: var(--shadow-sm); }
.bx-btn--lg { padding: 16px 28px; font-size: 16.5px; }
.bx-btn--block { width: 100%; justify-content: center; }

.bx-textlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
}
.bx-textlink svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.bx-textlink::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  height: 1.5px; width: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.bx-textlink:hover::after { transform: scaleX(1); }
.bx-textlink:hover svg { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.bx-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-top: 18px;
  transition: padding .4s var(--ease);
}
.bx-nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  margin-inline: clamp(14px, 4vw, auto);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.bx-nav.scrolled { padding-top: 10px; }
.bx-nav.scrolled .bx-nav__inner {
  background: rgba(250, 250, 247, .72);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-color: var(--line-2);
  box-shadow: 0 10px 30px -18px rgba(12, 15, 18, .3);
}
.bx-logo { display: flex; align-items: center; gap: 9px; font-family: var(--serif); font-weight: 600; font-size: 21px; letter-spacing: -.02em; }
.bx-logo img { height: 42px; width: auto; }
.bx-nav__menu { display: flex; align-items: center; gap: 4px; }
.bx-nav__link {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: color .25s var(--ease), background .25s var(--ease);
}
.bx-nav__link:hover, .bx-nav__link.active { color: var(--ink); background: rgba(12, 15, 18, .05); }
.bx-nav__right { display: flex; align-items: center; gap: 6px; }
.bx-nav__login { padding: 9px 14px; font-size: 15px; font-weight: 600; color: var(--ink); }

/* Account dropdown */
.bx-account { position: relative; }
.bx-account__btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 12px 6px 6px;
  border: 1px solid var(--line); border-radius: 999px;
  background: #fff; cursor: pointer;
  font: inherit; color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.bx-account__btn:hover { background: rgba(12, 15, 18, .03); }
.bx-account.open .bx-account__btn { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(23, 196, 220, .12); }
.bx-account__avatar {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 800; color: #042027;
  background: linear-gradient(135deg, var(--cyan), #12B5A5);
}
.bx-account__name { font-size: 14.5px; font-weight: 600; max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bx-account__chev { width: 16px; height: 16px; color: var(--muted); transition: transform .25s var(--ease); }
.bx-account.open .bx-account__chev { transform: rotate(180deg); }

.bx-account__menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 240px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 20px 44px -18px rgba(16, 24, 40, .28);
  padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s var(--ease);
  z-index: 60;
}
.bx-account.open .bx-account__menu { opacity: 1; visibility: visible; transform: none; }
.bx-account__head { padding: 8px 12px 10px; border-bottom: 1px solid var(--line-2); margin-bottom: 6px; }
.bx-account__hname { display: block; font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.bx-account__hemail { display: block; font-size: 12.5px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bx-account__item {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 10px 12px; border: 0; border-radius: 9px;
  background: none; cursor: pointer; text-align: left;
  font: inherit; font-size: 14px; font-weight: 500; color: var(--ink-2, #33404F);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.bx-account__item:hover { background: rgba(12, 15, 18, .05); color: var(--ink); }
.bx-account__item svg { width: 17px; height: 17px; flex: none; color: var(--muted); }
.bx-account__item:hover svg { color: var(--ink); }
.bx-account__item--danger { color: #B42318; }
.bx-account__item--danger svg { color: #B42318; }
.bx-account__item--danger:hover { background: #FEF3F2; color: #B42318; }
.bx-account__sep { height: 1px; background: var(--line-2); margin: 6px 4px; }
.bx-nav__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  align-items: center; justify-content: center;
}
.bx-nav__burger span { position: relative; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.bx-nav__burger span::before, .bx-nav__burger span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.bx-nav__burger span::before { top: -6px; }
.bx-nav__burger span::after { top: 6px; }

/* mobile menu */
.bx-mobile {
  position: fixed; inset: 0; z-index: 99;
  background: var(--paper);
  padding: 96px var(--gutter) 40px;
  display: flex; flex-direction: column;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform .5s var(--ease), opacity .4s var(--ease), visibility .4s;
}
.bx-mobile.open { transform: translateY(0); opacity: 1; visibility: visible; }
.bx-mobile a.bx-mobile__link {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink);
  padding: 18px 4px;
  border-bottom: 1px solid var(--line-2);
  display: flex; justify-content: space-between; align-items: center;
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.bx-mobile a.bx-mobile__link svg {
  width: 22px; height: 22px; flex: none;
  color: var(--muted-2);
  transition: transform .3s var(--ease), color .25s var(--ease);
}
.bx-mobile a.bx-mobile__link:hover, .bx-mobile a.bx-mobile__link:active { color: var(--cyan-700); padding-left: 10px; }
.bx-mobile a.bx-mobile__link:hover svg, .bx-mobile a.bx-mobile__link:active svg { color: var(--cyan); transform: translateX(4px); }
.bx-mobile__actions { margin-top: auto; display: grid; gap: 12px; padding-top: 28px; }
body.menu-open { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.bx-hero {
  position: relative;
  padding-top: clamp(128px, 17vw, 190px);
  padding-bottom: clamp(60px, 8vw, 90px);
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(23, 196, 220, .20), transparent 55%),
    radial-gradient(90% 70% at 0% 0%, rgba(255, 207, 74, .12), transparent 50%),
    var(--paper);
  overflow: hidden;
}
.bx-hero__grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.bx-hero__eyebrow { margin-bottom: 22px; }
.bx-hero h1 { margin-bottom: 22px; max-width: 15ch; }
.bx-hero__lead { margin-bottom: 34px; font-size: clamp(1.08rem, 1.5vw, 1.28rem); max-width: 44ch; }
.bx-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.bx-hero__trust { margin-top: 30px; display: flex; align-items: center; gap: 14px; }
.bx-hero__trust-avatars { display: flex; }
.bx-hero__trust-avatars img {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--paper);
  object-fit: cover;
  margin-left: -10px;
  background: var(--paper-2);
}
.bx-hero__trust-avatars img:first-child { margin-left: 0; }
.bx-hero__trust-text { font-size: 14px; color: var(--muted); line-height: 1.35; }
.bx-hero__trust-text strong { color: var(--ink); }

/* Hero product composition */
.bx-hero__stage { position: relative; }
.bx-hero__illus {
  position: absolute;
  right: -6%; bottom: -14%;
  width: 62%;
  opacity: .9;
  z-index: 0;
  pointer-events: none;
}
.bx-invoicecard {
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  max-width: 420px;
  margin-left: auto;
}
.bx-invoicecard__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.bx-invoicecard__brand { display: flex; align-items: center; gap: 9px; font-weight: 700; letter-spacing: -.02em; }
.bx-invoicecard__mark { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg, var(--cyan), var(--mint)); display: grid; place-items: center; color: #042027; font-family: var(--serif); font-weight: 700; }
.bx-invoicecard__no { text-align: right; font-size: 13px; color: var(--muted); }
.bx-invoicecard__no b { display: block; color: var(--ink); font-size: 15px; }
.bx-invoicecard__row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 14.5px; }
.bx-invoicecard__row span:last-child { font-variant-numeric: tabular-nums; font-weight: 600; }
.bx-invoicecard__row--muted span { color: var(--muted); font-weight: 500; }
.bx-invoicecard__total { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }
.bx-invoicecard__total small { font-size: 13px; color: var(--muted); }
.bx-invoicecard__total b { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.bx-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.bx-chip i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.bx-chip .dot-green { background: #22C55E; box-shadow: 0 0 0 4px rgba(34, 197, 94, .16); }
.bx-chip .dot-cyan { background: var(--cyan); box-shadow: 0 0 0 4px rgba(23, 196, 220, .16); }
.bx-chip .dot-amber { background: var(--yellow); box-shadow: 0 0 0 4px rgba(255, 207, 74, .2); }
.bx-chip--tl { top: 4%; left: -6%; }
.bx-chip--tr { top: 26%; right: -8%; }
.bx-chip--bl { bottom: 16%; left: -9%; }
.bx-chip--br { bottom: -4%; right: 4%; }
.bx-chip svg { width: 15px; height: 15px; }

/* floating idle motion */
@keyframes bxFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.bx-float { animation: bxFloat 6s var(--ease) infinite; }
.bx-float.d1 { animation-duration: 7s; animation-delay: -1s; }
.bx-float.d2 { animation-duration: 8s; animation-delay: -2s; }
.bx-float.d3 { animation-duration: 6.5s; animation-delay: -3s; }

/* Logo strip */
.bx-logostrip { margin-top: clamp(48px, 7vw, 84px); }
.bx-logostrip__label { text-align: center; font-size: 13.5px; letter-spacing: .06em; color: var(--muted-2); text-transform: uppercase; margin-bottom: 26px; }
.bx-logostrip__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(20px, 4vw, 46px); flex-wrap: wrap;
}
.bx-logostrip__row img {
  height: clamp(22px, 3vw, 30px); width: auto;
  filter: grayscale(1) contrast(.6) brightness(.4);
  opacity: .55;
  transition: opacity .3s var(--ease), filter .3s var(--ease);
}
.bx-logostrip__row img:hover { opacity: 1; filter: grayscale(0); }

/* ============================================================
   PROOF / CAPABILITIES
   ============================================================ */
.bx-proof { background: var(--white); }
.bx-proof__head { max-width: 720px; margin: 0 auto clamp(48px, 6vw, 76px); text-align: center; }
.bx-proof__head .bx-eyebrow { justify-content: center; margin-bottom: 18px; }
.bx-proof__head h2 { margin-bottom: 16px; }
.bx-proof__head p { color: var(--muted); font-size: 1.12rem; max-width: 52ch; margin-inline: auto; }
.bx-caps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bx-cap {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--paper);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.bx-cap:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.bx-cap__step { font-family: var(--serif); font-size: 13px; color: var(--cyan-700); letter-spacing: .1em; }
.bx-cap h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; margin: 6px 0 8px; }
.bx-cap p { color: var(--muted); font-size: 15.5px; margin-bottom: 20px; }
.bx-cap__ui {
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: 14px;
  box-shadow: var(--shadow-xs);
}
.bx-miniRow { display: flex; align-items: center; justify-content: space-between; font-size: 13px; padding: 7px 0; }
.bx-miniRow + .bx-miniRow { border-top: 1px solid var(--line-2); }
.bx-miniRow .lbl { color: var(--muted); display: flex; align-items: center; gap: 8px; }
.bx-miniRow .amt { font-weight: 700; font-variant-numeric: tabular-nums; }
.bx-badge { font-size: 11.5px; font-weight: 700; padding: 3px 9px; border-radius: 999px; letter-spacing: .01em; }
.bx-badge--paid { background: rgba(34, 197, 94, .14); color: #15803D; }
.bx-badge--sent { background: rgba(23, 196, 220, .16); color: var(--cyan-700); }
.bx-badge--draft { background: rgba(12, 15, 18, .07); color: var(--muted); }
.bx-badge--due { background: rgba(255, 207, 74, .22); color: var(--yellow-ink); }
.bx-progress { height: 6px; border-radius: 999px; background: var(--paper-2); overflow: hidden; margin-top: 12px; }
.bx-progress i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--cyan), var(--mint)); width: 0; transition: width 1.2s var(--ease); }
.in-view .bx-progress i { width: var(--w, 70%); }

/* ============================================================
   STORY (yellow) — Redefining invoicing
   ============================================================ */
.bx-story { background: var(--yellow-tint); }
.bx-story__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.bx-story__media { position: relative; }
.bx-story__media img { width: 100%; max-width: 520px; }
.bx-story__stat {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  text-align: left;
}
.bx-story__stat b { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; display: block; line-height: 1; }
.bx-story__stat span { font-size: 12.5px; color: var(--muted); }
.bx-story__stat--a { top: 8%; right: 2%; }
.bx-story__stat--b { bottom: 10%; left: -2%; }
.bx-story__head .bx-eyebrow { margin-bottom: 18px; }
.bx-story__head h2 { margin-bottom: 30px; max-width: 16ch; }
.bx-accordion { border-top: 1px solid rgba(74, 58, 17, .18); }
.bx-acc {
  border-bottom: 1px solid rgba(74, 58, 17, .18);
}
.bx-acc__btn {
  width: 100%;
  display: flex; align-items: baseline; gap: 18px;
  padding: 22px 4px;
  text-align: left;
}
.bx-acc__num { font-family: var(--serif); font-size: 15px; color: var(--yellow-ink); opacity: .55; font-variant-numeric: tabular-nums; }
.bx-acc__title { font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 500; color: var(--ink); flex: 1; transition: color .3s var(--ease); }
.bx-acc__icon { width: 26px; height: 26px; flex: none; position: relative; align-self: center; }
.bx-acc__icon::before, .bx-acc__icon::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; transition: transform .4s var(--ease), opacity .3s var(--ease); }
.bx-acc__icon::before { top: 12px; left: 5px; width: 16px; height: 2px; }
.bx-acc__icon::after { top: 5px; left: 12px; width: 2px; height: 16px; }
.bx-acc.open .bx-acc__icon::after { transform: rotate(90deg); opacity: 0; }
.bx-acc__panel { overflow: hidden; height: 0; transition: height .45s var(--ease); }
.bx-acc__panel-inner { padding: 0 4px 24px 45px; color: var(--muted); font-size: 16px; max-width: 52ch; }
.bx-acc.open .bx-acc__title { color: var(--cyan-700); }

/* ============================================================
   SHOWCASE — sticky storytelling
   ============================================================ */
.bx-showcase { background: var(--paper); }
.bx-showcase__track { position: relative; }
.bx-showcase__viewport {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block: 90px;
}
.bx-showcase__cols {
  width: 100%;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.bx-showcase__aside { align-self: center; }
.bx-showcase__aside h2 { margin: 18px 0 26px; }
.bx-steps { display: grid; gap: 4px; }
.bx-step {
  display: flex; gap: 15px; padding: 15px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease);
  cursor: pointer;
}
.bx-step.active { background: var(--white); border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.bx-step__idx {
  width: 30px; height: 30px; flex: none;
  border-radius: 8px; display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
  background: var(--paper-2); color: var(--muted);
  transition: .4s var(--ease);
}
.bx-step.active .bx-step__idx { background: var(--cyan); color: #042027; }
.bx-step__body h4 { font-size: 16px; font-weight: 600; margin-bottom: 2px; }
.bx-step__body p { font-size: 14px; color: var(--muted); line-height: 1.5; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .5s var(--ease), opacity .4s var(--ease), margin .4s var(--ease); }
.bx-step.active .bx-step__body p { max-height: 80px; opacity: 1; margin-top: 4px; }

.bx-stage {
  position: relative;
  min-height: 460px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff, #fbfbf9);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.bx-panel {
  position: absolute; inset: 0;
  padding: clamp(20px, 3vw, 34px);
  opacity: 0;
  transform: translateY(16px) scale(.99);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  pointer-events: none;
}
.bx-panel.active { opacity: 1; transform: none; pointer-events: auto; }
.bx-panel__bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.bx-panel__bar h5 { font-size: 15px; font-weight: 700; }
.bx-panel__dots { display: flex; gap: 6px; }
.bx-panel__dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); display: inline-block; }

.bx-ui-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 16px; }
.bx-ui-card { background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 16px; }
.bx-ui-card .cap { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: .02em; }
.bx-ui-card .big { font-family: var(--serif); font-size: 1.8rem; font-weight: 600; font-variant-numeric: tabular-nums; margin-top: 4px; }
.bx-ui-card .delta { font-size: 12.5px; font-weight: 700; color: #15803D; }

/* mini area chart */
.bx-chart { width: 100%; height: 92px; margin-top: 10px; }
.bx-chart__line { fill: none; stroke: var(--cyan-600); stroke-width: 2.4; stroke-linecap: round; stroke-dasharray: 600; stroke-dashoffset: 600; transition: stroke-dashoffset 1.6s var(--ease-out); }
.bx-panel.active .bx-chart__line { stroke-dashoffset: 0; }
.bx-chart__area { fill: url(#bxGrad); opacity: 0; transition: opacity .8s var(--ease) .4s; }
.bx-panel.active .bx-chart__area { opacity: .5; }

.bx-list { display: grid; gap: 2px; }
.bx-list__row { display: flex; align-items: center; gap: 12px; padding: 11px 4px; border-bottom: 1px solid var(--line-2); }
.bx-list__row:last-child { border-bottom: none; }
.bx-list__av { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan-tint), var(--mint-tint)); display: grid; place-items: center; font-size: 12px; font-weight: 700; color: var(--cyan-700); }
.bx-list__meta { flex: 1; min-width: 0; }
.bx-list__meta b { font-size: 13.5px; font-weight: 600; display: block; }
.bx-list__meta span { font-size: 12px; color: var(--muted); }
.bx-list__amt { font-weight: 700; font-size: 13.5px; font-variant-numeric: tabular-nums; }

.bx-toggle-row { display: flex; align-items: center; justify-content: space-between; padding: 13px 14px; border: 1px solid var(--line-2); border-radius: var(--radius-xs); margin-bottom: 10px; background: #fff; }
.bx-toggle-row .t { font-size: 13.5px; font-weight: 600; display: flex; align-items: center; gap: 9px; }
.bx-toggle-row .t small { display: block; font-weight: 500; color: var(--muted); font-size: 12px; }
.bx-switch { width: 40px; height: 23px; border-radius: 999px; background: var(--cyan); position: relative; flex: none; }
.bx-switch::after { content: ""; position: absolute; top: 2px; left: 19px; width: 19px; height: 19px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-xs); }
.bx-switch.off { background: var(--paper-2); }
.bx-switch.off::after { left: 2px; }

.bx-chat { display: grid; gap: 12px; }
.bx-bubble { max-width: 78%; padding: 12px 15px; border-radius: 16px; font-size: 14px; line-height: 1.45; }
.bx-bubble--in { background: var(--paper-2); border-bottom-left-radius: 5px; }
.bx-bubble--out { background: var(--cyan); color: #042027; margin-left: auto; border-bottom-right-radius: 5px; }
.bx-chat__agent { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--muted); }
.bx-chat__agent i { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 0 3px rgba(34, 197, 94, .18); }

/* ============================================================
   TESTIMONIALS (mint)
   ============================================================ */
.bx-testi { background: var(--mint-tint); overflow: hidden; }
.bx-testi__head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 5vw, 60px); }
.bx-testi__head .bx-eyebrow { justify-content: center; margin-bottom: 18px; }
.bx-testi__score { display: inline-flex; align-items: center; gap: 12px; margin-top: 20px; background: #fff; border: 1px solid var(--line-2); border-radius: 999px; padding: 9px 18px; box-shadow: var(--shadow-sm); }
.bx-stars { display: inline-flex; gap: 2px; color: #F5B301; }
.bx-stars svg { width: 16px; height: 16px; }
.bx-testi__score b { font-weight: 700; }
.bx-testi__score span { color: var(--muted); font-size: 14px; }
.bx-marquee { position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); cursor: grab; }
.bx-marquee.dragging { cursor: grabbing; }
.bx-marquee__row { display: flex; gap: 20px; width: max-content; will-change: transform; }
.bx-quote {
  width: min(400px, 82vw);
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  flex: none;
}
.bx-quote__stars { color: #F5B301; display: flex; gap: 2px; margin-bottom: 14px; }
.bx-quote__stars svg { width: 15px; height: 15px; }
.bx-quote blockquote { font-family: var(--serif); font-size: 1.18rem; line-height: 1.42; font-weight: 400; letter-spacing: -.01em; color: var(--ink-2); margin-bottom: 20px; }
.bx-quote__who { display: flex; align-items: center; gap: 12px; }
.bx-quote__who img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; background: var(--mint-tint); }
.bx-quote__who b { font-size: 14.5px; font-weight: 600; display: block; }
.bx-quote__who span { font-size: 13px; color: var(--muted); }

/* ============================================================
   PRICING
   ============================================================ */
.bx-pricing { background: var(--white); }
.bx-pricing__head { text-align: center; max-width: 660px; margin: 0 auto clamp(44px, 5vw, 64px); }
.bx-pricing__head .bx-eyebrow { justify-content: center; margin-bottom: 18px; }
.bx-pricing__head p { color: var(--muted); font-size: 1.1rem; margin-top: 14px; }
.bx-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 860px; margin-inline: auto; align-items: stretch; }
.bx-plan {
  position: relative;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  background: var(--paper);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.bx-plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bx-plan--featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.bx-plan--featured:hover { box-shadow: 0 40px 80px -28px rgba(23, 196, 220, .5); border-color: var(--cyan); }
.bx-plan__tag {
  position: absolute; top: 22px; right: 22px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
  padding: 5px 11px; border-radius: 999px;
  background: var(--cyan); color: #042027;
}
.bx-plan__name { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.bx-plan--featured .bx-plan__name { color: var(--cyan); }
.bx-plan__price { font-family: var(--serif); font-weight: 600; font-size: clamp(2.6rem, 5vw, 3.3rem); line-height: 1; margin: 14px 0 4px; display: flex; align-items: flex-start; gap: 2px; }
.bx-plan__price sup { font-size: 1.3rem; top: .5rem; font-family: var(--sans); font-weight: 600; }
.bx-plan__price .per { font-family: var(--sans); font-size: 1rem; color: var(--muted); font-weight: 500; align-self: flex-end; margin-bottom: .5rem; }
.bx-plan--featured .bx-plan__price .per { color: rgba(255,255,255,.6); }
.bx-plan__sub { font-size: 14.5px; color: var(--muted); margin-bottom: 24px; }
.bx-plan--featured .bx-plan__sub { color: rgba(255,255,255,.65); }
.bx-plan__cta { margin-bottom: 24px; }
.bx-plan__features { display: grid; gap: 12px; border-top: 1px solid var(--line); padding-top: 22px; }
.bx-plan--featured .bx-plan__features { border-color: rgba(255,255,255,.14); }
.bx-feat { display: flex; align-items: center; gap: 11px; font-size: 14.5px; }
.bx-feat__ico { width: 20px; height: 20px; flex: none; border-radius: 50%; display: grid; place-items: center; }
.bx-feat__ico.yes { background: rgba(34, 197, 94, .16); color: #15803D; }
.bx-feat__ico.no { background: rgba(239, 68, 68, .12); color: #DC2626; }
.bx-plan--featured .bx-feat__ico.yes { background: rgba(87, 220, 162, .2); color: var(--mint); }
.bx-plan--featured .bx-feat__ico.no { background: rgba(248, 113, 113, .18); color: #F87171; }
.bx-feat__ico svg { width: 12px; height: 12px; }
.bx-feat__label { flex: 1; }
.bx-feat__val { font-weight: 700; font-variant-numeric: tabular-nums; }
.bx-feat--off { color: var(--muted-2); }
.bx-plan--featured .bx-feat--off { color: rgba(255,255,255,.4); }
.bx-plan__note { font-size: 12.5px; color: var(--muted-2); text-align: center; margin-top: 16px; }
.bx-plan--featured .bx-plan__note { color: rgba(255,255,255,.5); }

/* ============================================================
   CTA (cyan)
   ============================================================ */
.bx-cta { padding-block: clamp(40px, 6vw, 70px); }
.bx-cta__box {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(255,255,255,.4), transparent 45%),
    linear-gradient(135deg, var(--cyan), var(--cyan-600));
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 74px);
  text-align: center;
  color: #042027;
}
.bx-cta__box h2 { color: #042027; margin-bottom: 16px; }
.bx-cta__box p { max-width: 48ch; margin: 0 auto 30px; color: #063A44; font-size: 1.1rem; }
.bx-cta__ghost {
  position: absolute; font-family: var(--serif); font-weight: 600;
  color: rgba(4, 32, 39, .1); font-size: clamp(3rem, 9vw, 8rem);
  line-height: 1; user-select: none; pointer-events: none;
}
.bx-cta__ghost--l { left: -2%; top: 8%; transform: rotate(-8deg); }
.bx-cta__ghost--r { right: -1%; bottom: 4%; transform: rotate(6deg); }

/* ============================================================
   FAQ
   ============================================================ */
.bx-faq { background: var(--paper); }
.bx-faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
.bx-faq__aside { position: sticky; top: 120px; }
.bx-faq__aside .bx-eyebrow { margin-bottom: 18px; }
.bx-faq__aside h2 { margin-bottom: 18px; }
.bx-faq__aside p { color: var(--muted); max-width: 34ch; margin-bottom: 24px; }
.bx-faq__list { border-top: 1px solid var(--line); }
.bx-faq__item { border-bottom: 1px solid var(--line); }
.bx-faq__q { width: 100%; display: flex; align-items: center; gap: 18px; padding: 24px 4px; text-align: left; }
.bx-faq__q h3 { font-size: clamp(1.05rem, 1.6vw, 1.28rem); font-weight: 600; flex: 1; letter-spacing: -.01em; transition: color .3s var(--ease); }
.bx-faq__item.open .bx-faq__q h3 { color: var(--cyan-700); }
.bx-faq__icon { width: 24px; height: 24px; flex: none; position: relative; }
.bx-faq__icon::before, .bx-faq__icon::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; transition: transform .4s var(--ease), opacity .3s var(--ease); }
.bx-faq__icon::before { top: 11px; left: 4px; width: 16px; height: 2px; }
.bx-faq__icon::after { top: 4px; left: 11px; width: 2px; height: 16px; }
.bx-faq__item.open .bx-faq__icon::after { transform: rotate(90deg); opacity: 0; }
.bx-faq__a { overflow: hidden; height: 0; transition: height .45s var(--ease); }
.bx-faq__a-inner { padding: 0 4px 26px; color: var(--muted); font-size: 16px; line-height: 1.65; max-width: 60ch; }

/* ============================================================
   FINAL CTA + FOOTER
   ============================================================ */
.bx-final {
  position: relative;
  background:
    radial-gradient(90% 120% at 15% 0%, rgba(255,255,255,.35), transparent 50%),
    linear-gradient(160deg, var(--cyan), var(--cyan-600) 70%);
  color: #042027;
  padding-top: clamp(70px, 10vw, 130px);
  overflow: hidden;
}
.bx-final__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.bx-final h2 { color: #042027; margin-bottom: 18px; max-width: 16ch; }
.bx-final p { color: #063A44; font-size: 1.12rem; max-width: 46ch; margin-bottom: 30px; }
.bx-final__media { position: relative; }
.bx-final__media img { width: 100%; max-width: 460px; margin-left: auto; }

.bx-footer { background: var(--ink); color: rgba(255,255,255,.72); padding-block: clamp(56px, 7vw, 84px) 30px; }
.bx-footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.bx-footer__brand .bx-logo { color: #fff; margin-bottom: 16px; }
.bx-footer__logo { display: inline-block; margin-bottom: 18px; }
.bx-footer__logo img { height: 46px; width: auto; filter: brightness(0) invert(1); opacity: .95; }
.bx-footer__brand p { max-width: 34ch; font-size: 14.5px; line-height: 1.6; color: rgba(255, 255, 255, .72); }
.bx-footer__brand .bx-mark { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg, var(--cyan), var(--mint)); display: grid; place-items: center; color: #042027; font-family: var(--serif); font-weight: 700; }
.bx-footer h4 { color: #fff; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.bx-footer__col a, .bx-footer__col address { display: block; font-size: 14.5px; padding: 6px 0; color: rgba(255,255,255,.7); font-style: normal; transition: color .25s var(--ease); }
.bx-footer__col a:hover { color: var(--cyan); }
.bx-footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; flex-wrap: wrap; gap: 12px; }
.bx-footer__bottom p { font-size: 13.5px; color: rgba(255,255,255,.55); }
.bx-footer__bottom .heart { color: #ff6b6b; }

/* ---------- scroll-to-top ---------- */
.bx-toTop {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
}
.bx-toTop.show { opacity: 1; visibility: visible; transform: none; }
.bx-toTop svg { width: 18px; height: 18px; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(28px); }
[data-reveal="left"] { transform: translateX(-34px); }
[data-reveal="right"] { transform: translateX(34px); }
[data-reveal="scale"] { transform: scale(.96); }
[data-reveal="clip"] { clip-path: inset(0 0 100% 0); transform: none; opacity: 1; }
[data-reveal].in-view {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 0);
  transition: opacity .8s var(--ease), transform .8s var(--ease), clip-path .9s var(--ease);
  transition-delay: var(--d, 0s);
}
/* Hero entrance */
[data-hero] { opacity: 0; transform: translateY(20px); }
body.loaded [data-hero] {
  opacity: 1; transform: none;
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0s);
}
[data-hero="stage"] { transform: translateY(28px) scale(.97); }
[data-hero="chip"] { opacity: 0; transform: translateY(10px) scale(.9); }
body.loaded [data-hero="chip"] { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); transition-delay: var(--d, 0s); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .bx-hero__grid { grid-template-columns: 1fr; }
  .bx-hero__stage { margin-top: 20px; }
  .bx-showcase__cols { grid-template-columns: 1fr; gap: 30px; }
  .bx-story__grid { grid-template-columns: 1fr; }
  .bx-final__grid { grid-template-columns: 1fr; }
  .bx-footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .bx-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .bx-nav__menu { display: none; }
  .bx-nav__right .bx-nav__login, .bx-nav__right .bx-btn { display: none; }
  .bx-nav__right .bx-account { display: none; }
  .bx-nav__burger { display: flex; }
  .bx-caps { grid-template-columns: 1fr; }
  .bx-faq__grid { grid-template-columns: 1fr; }
  .bx-faq__aside { position: static; }

  /* Sticky showcase → stacked on tablet/mobile */
  .bx-showcase__track { min-height: auto !important; height: auto !important; }
  .bx-showcase__viewport { position: static; min-height: auto; display: block; padding-block: 0; }
  .bx-showcase__cols { display: block; }
  .bx-showcase__aside { margin-bottom: 30px; }
  .bx-steps { display: none; }
  .bx-stage { min-height: 0; box-shadow: var(--shadow-md); }
  .bx-panel { position: static; opacity: 1; transform: none; pointer-events: auto; padding: 20px; }
  .bx-panel + .bx-panel { border-top: 1px solid var(--line-2); }
  .bx-panel .bx-chart__line { stroke-dashoffset: 0; }
  .bx-panel .bx-chart__area { opacity: .5; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .bx-hero__cta { width: 100%; flex-direction: column; align-items: stretch; }
  .bx-hero__cta .bx-btn { width: 100%; justify-content: center; white-space: nowrap; }
  .bx-btn--lg { padding: 14px 22px; font-size: 15.5px; }
  .bx-invoicecard { max-width: 100%; }
  .bx-chip--tr { right: 0; }
  .bx-chip--bl { left: 0; }
  .bx-chip--tl { left: 0; }
  .bx-ui-grid { grid-template-columns: 1fr; }
  .bx-footer__top { grid-template-columns: 1fr 1fr; }
  .bx-cta__box, .bx-final { text-align: center; }
  .bx-story__stat--b { left: 0; }
  .bx-plans { max-width: 460px; }
}

@media (max-width: 400px) {
  .bx-footer__top { grid-template-columns: 1fr; }
  .bx-chip { font-size: 12px; padding: 7px 11px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal], [data-hero] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .bx-float { animation: none !important; }
  .bx-chart__line { stroke-dashoffset: 0 !important; }
  .bx-chart__area { opacity: .5 !important; }
}
body.reduce-motion [data-reveal],
body.reduce-motion [data-hero] { opacity: 1 !important; transform: none !important; clip-path: none !important; transition: none !important; }
body.reduce-motion .bx-float { animation: none !important; }

/* ============================================================
   PUBLIC SUB-PAGES (legal, releases, testimonials, pricing)
   ============================================================ */
.bx-pagehero {
  padding-top: clamp(140px, 18vw, 200px);
  padding-bottom: clamp(38px, 6vw, 64px);
  background:
    radial-gradient(120% 90% at 85% -25%, rgba(23, 196, 220, .16), transparent 55%),
    radial-gradient(80% 70% at 0% 0%, rgba(255, 207, 74, .10), transparent 55%),
    var(--paper);
  border-bottom: 1px solid var(--line-2);
}
.bx-pagehero__inner { max-width: 880px; }
.bx-pagehero--center .bx-pagehero__inner { max-width: 760px; margin-inline: auto; text-align: center; }
.bx-pagehero--center .bx-eyebrow { justify-content: center; }
.bx-pagehero .bx-eyebrow { margin-bottom: 20px; }
.bx-pagehero h1 { font-size: clamp(2.4rem, 5.4vw, 3.7rem); margin-bottom: 16px; }
.bx-pagehero p { color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.2rem); max-width: 62ch; }
.bx-pagehero--center p { margin-inline: auto; }
.bx-pagehero__meta { margin-top: 22px; font-size: 13.5px; color: var(--muted-2); display: inline-flex; align-items: center; gap: 9px; }
.bx-pagehero__meta i { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); display: inline-block; }

/* Legal / prose */
.bx-prose { max-width: 780px; margin-inline: auto; padding-block: clamp(48px, 7vw, 90px); }
.bx-prose > p:first-of-type { font-size: 1.18rem; color: var(--ink-2); line-height: 1.7; }
.bx-prose h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 2.6rem 0 .5rem; letter-spacing: -.01em; }
.bx-prose h3 { font-family: var(--serif); font-weight: 600; font-size: 1.25rem; margin: 1.9rem 0 .4rem; }
.bx-prose p { color: var(--muted); font-size: 1.06rem; line-height: 1.8; margin-top: .9rem; }
.bx-prose a { color: var(--cyan-700); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.bx-prose a:hover { color: var(--ink); }
.bx-prose ul { padding-left: 1.25rem; list-style: disc; margin-top: 1rem; }
.bx-prose ul li { color: var(--muted); font-size: 1.06rem; line-height: 1.8; margin-top: .4rem; }
.bx-prose strong { color: var(--ink); font-weight: 600; }
.bx-prose hr { border: none; border-top: 1px solid var(--line); margin: 2.4rem 0; }

/* Releases */
.bx-releases { max-width: 820px; margin-inline: auto; padding-block: clamp(44px, 6vw, 84px); display: grid; gap: 20px; }
.bx-release {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  background: var(--white);
  transition: box-shadow .4s var(--ease), transform .4s var(--ease), border-color .4s var(--ease);
}
.bx-release:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }
.bx-release__tag { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .05em; padding: 5px 11px; border-radius: 999px; background: var(--cyan-tint); color: var(--cyan-700); text-transform: uppercase; }
.bx-release h3 { font-family: var(--serif); font-weight: 600; font-size: 1.45rem; margin: 14px 0 3px; letter-spacing: -.01em; }
.bx-release__date { font-size: 13px; color: var(--muted-2); }
.bx-release ul { list-style: none; margin-top: 18px; display: grid; gap: 10px; }
.bx-release ul li { position: relative; padding-left: 26px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.bx-release ul li::before { content: ""; position: absolute; left: 3px; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--mint)); }
.bx-empty { text-align: center; color: var(--muted); padding: 40px 0; }

/* Testimonials wall */
.bx-wall { columns: 3; column-gap: 22px; padding-block: clamp(40px, 5vw, 70px); }
.bx-wallcard {
  break-inside: avoid;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: box-shadow .4s var(--ease), transform .4s var(--ease), border-color .4s var(--ease);
}
.bx-wallcard:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }
.bx-wallcard__stars { color: #F5B301; display: flex; gap: 2px; margin-bottom: 14px; }
.bx-wallcard__stars svg { width: 15px; height: 15px; }
.bx-wallcard p { color: var(--ink-2); font-size: 15.5px; line-height: 1.6; margin-bottom: 18px; }
.bx-wallcard__who { display: flex; align-items: center; gap: 12px; }
.bx-wallcard__who img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; background: var(--paper-2); }
.bx-wallcard__who b { font-size: 14.5px; display: block; }
.bx-wallcard__who span { font-size: 13px; color: var(--muted); }
.bx-wallcard__date { margin-top: 14px; font-size: 12.5px; color: var(--muted-2); }

/* Standalone pricing page section */
.bx-pricingpage { background: var(--paper); }
.bx-pricingpage .bx-plans { margin-top: clamp(40px, 5vw, 60px); }

@media (max-width: 1024px) { .bx-wall { columns: 2; } }
@media (max-width: 640px) { .bx-wall { columns: 1; } }

/* ============================================================
   AUTH — premium split-screen sign in
   ============================================================ */
.bx-authpage { min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column; background: var(--paper); }

.bx-authnav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px clamp(20px, 5vw, 52px); }
.bx-authnav__logo img { height: 40px; width: auto; display: block; }
.bx-authnav__right { display: flex; align-items: center; gap: 14px; }
.bx-authnav__right span { color: var(--muted); font-size: 14.5px; }
.bx-authnav__right .bx-btn { padding: 10px 18px; font-size: 14.5px; }

.bx-authsplit { flex: 1 1 auto; display: grid; grid-template-columns: 45% 55%; }

/* Left — brand + product scene */
.bx-authbrand {
  position: relative;
  padding: clamp(30px, 4vw, 60px) clamp(28px, 4vw, 64px);
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--line-2);
  background:
    radial-gradient(70% 55% at 22% 32%, rgba(23, 196, 220, .16), transparent 60%),
    radial-gradient(60% 55% at 92% 88%, rgba(87, 220, 162, .13), transparent 60%),
    var(--paper);
}
.bx-authbrand__inner { width: 100%; max-width: 470px; margin-inline: auto; }
.bx-authbrand .bx-eyebrow { margin-bottom: 20px; }
.bx-authbrand h1 { font-family: var(--serif); font-weight: 500; letter-spacing: -.02em; line-height: 1.04; font-size: clamp(1.9rem, 3vw, 2.8rem); margin-bottom: 18px; color: var(--ink); }
.bx-authbrand h1 em { font-style: italic; color: var(--cyan-700); }
.bx-authbrand__lead { color: var(--muted); font-size: 1.05rem; line-height: 1.6; max-width: 40ch; margin-bottom: clamp(34px, 5vw, 52px); }

.bx-authviz { position: relative; max-width: 380px; margin: 0 auto clamp(34px, 5vw, 50px); }
.bx-authviz .bx-invoicecard { margin: 0; max-width: 100%; }
.bx-authviz .bx-invoicecard__client { padding: 4px 0 14px; border-bottom: 1px dashed var(--line); }
.bx-authviz .bx-invoicecard__client b { font-weight: 600; font-size: 15px; }
.bx-authviz .bx-invoicecard__client span { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }
.bx-authviz .bx-badge--paid { font-size: 12.5px; padding: 5px 12px; }

.bx-authbrand__trust { display: flex; align-items: center; gap: 13px; }
.bx-authbrand__trust p { font-size: 14px; color: var(--muted); line-height: 1.35; max-width: 24ch; }

/* Right — form surface */
.bx-authform { background: var(--white); display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 4vw, 60px) clamp(24px, 4vw, 56px); }
.bx-authform__inner { width: 100%; max-width: 400px; margin-inline: auto; }
.bx-authform__label { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.bx-authform__label::before { content: ""; width: 20px; height: 1.5px; background: var(--cyan-600); }
.bx-authform h2 { font-family: var(--serif); font-weight: 600; letter-spacing: -.02em; font-size: clamp(1.8rem, 2.6vw, 2.2rem); margin-bottom: 10px; }
.bx-authform__sub { color: var(--muted); font-size: 15px; margin-bottom: 30px; line-height: 1.55; }

/* Alerts (preserve flash + validation behaviour) */
.bx-alert { display: flex; gap: 10px; align-items: flex-start; padding: 12px 14px; border-radius: 12px; font-size: 14px; line-height: 1.5; margin-bottom: 20px; border: 1px solid; }
.bx-alert svg { width: 18px; height: 18px; flex: none; margin-top: 1px; }
.bx-alert ul { margin: 4px 0 0; padding-left: 18px; }
.bx-alert--error { background: rgba(239, 68, 68, .07); border-color: rgba(239, 68, 68, .26); color: #B91C1C; }
.bx-alert--success { background: rgba(34, 197, 94, .08); border-color: rgba(34, 197, 94, .3); color: #15803D; }

/* Fields */
.bx-field { margin-bottom: 18px; }
.bx-label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.bx-inputwrap { position: relative; }
.bx-input {
  width: 100%; height: 52px; padding: 0 16px;
  border: 1px solid var(--line); border-radius: 12px;
  background: #fff; color: var(--ink);
  font-family: var(--sans); font-size: 15.5px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.bx-input::placeholder { color: var(--muted-2); }
.bx-input:hover { border-color: rgba(12, 15, 18, .24); }
.bx-input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(23, 196, 220, .16); }
.bx-input--pw { padding-right: 48px; }
.bx-pwtoggle { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; display: grid; place-items: center; color: var(--muted); border-radius: 8px; transition: color .2s var(--ease), background .2s var(--ease); }
.bx-pwtoggle:hover { color: var(--ink); background: var(--paper-2); }
.bx-pwtoggle svg { width: 18px; height: 18px; }
.bx-pwtoggle .ico-off { display: none; }
.bx-pwtoggle.is-visible .ico-on { display: none; }
.bx-pwtoggle.is-visible .ico-off { display: block; }

.bx-formrow { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 4px 0 24px; }
.bx-check { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: var(--muted); cursor: pointer; user-select: none; }
.bx-check input { position: absolute; opacity: 0; width: 0; height: 0; }
.bx-check__box { width: 18px; height: 18px; border: 1px solid var(--line); border-radius: 5px; display: grid; place-items: center; color: #042027; transition: background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease); }
.bx-check__box svg { width: 12px; height: 12px; opacity: 0; transition: opacity .15s var(--ease); }
.bx-check input:checked + .bx-check__box { background: var(--cyan); border-color: var(--cyan); }
.bx-check input:checked + .bx-check__box svg { opacity: 1; }
.bx-check input:focus-visible + .bx-check__box { box-shadow: 0 0 0 4px rgba(23, 196, 220, .16); }
.bx-forgot { font-size: 14px; font-weight: 600; color: var(--cyan-700); position: relative; }
.bx-forgot::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1.5px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.bx-forgot:hover::after { transform: scaleX(1); }

.bx-authsubmit { width: 100%; justify-content: center; height: 54px; font-size: 16px; }
.bx-authsubmit .spinner { display: none; width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(4, 32, 39, .28); border-top-color: #042027; animation: bxspin .7s linear infinite; }
.bx-authsubmit.is-loading .label, .bx-authsubmit.is-loading .arrow { display: none; }
.bx-authsubmit.is-loading .spinner { display: inline-block; }
.bx-authsubmit[disabled], .bx-authsubmit.is-loading { opacity: .85; pointer-events: none; }
@keyframes bxspin { to { transform: rotate(360deg); } }

.bx-authlegal { font-size: 12.5px; color: var(--muted-2); text-align: center; margin-top: 22px; line-height: 1.6; }
.bx-authlegal a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.bx-authlegal a:hover { color: var(--ink); }
.bx-authswitch { text-align: center; margin-top: 26px; font-size: 14.5px; color: var(--muted); }
.bx-authswitch a { color: var(--ink); font-weight: 700; position: relative; }
.bx-authswitch a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1.5px; background: var(--cyan); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.bx-authswitch a:hover::after { transform: scaleX(1); }

/* Compact footer */
.bx-authfoot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px clamp(20px, 5vw, 52px); border-top: 1px solid var(--line-2); font-size: 13px; color: var(--muted-2); flex-wrap: wrap; }
.bx-authfoot__links { display: flex; gap: 20px; }
.bx-authfoot a { color: var(--muted); transition: color .2s var(--ease); }
.bx-authfoot a:hover { color: var(--ink); }

/* Auth entrance animation */
[data-auth] { opacity: 0; transform: translateY(16px); }
[data-auth="viz"] { transform: translateY(20px) scale(.97); }
body.loaded [data-auth] { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }

/* Auth responsive */
@media (max-width: 900px) {
  .bx-authsplit { display: flex; flex-direction: column; }
  .bx-authform { order: 1; padding-block: clamp(28px, 8vw, 44px); }
  .bx-authbrand { order: 2; border-right: none; border-top: 1px solid var(--line-2); padding-block: clamp(36px, 9vw, 52px); }
  .bx-authbrand__copy { display: none; }
  .bx-authviz { margin-top: 8px; }
  .bx-authbrand__trust { justify-content: center; }
  .bx-authnav__right span { display: none; }
}
@media (max-width: 520px) {
  .bx-authform__inner, .bx-authbrand__inner { max-width: 100%; }
  .bx-chip { font-size: 12px; padding: 7px 11px; }
}

@media (prefers-reduced-motion: reduce) {
  [data-auth] { opacity: 1 !important; transform: none !important; }
}
body.reduce-motion [data-auth] { opacity: 1 !important; transform: none !important; transition: none !important; }

/* Secure recovery badge on the product scene */
.bx-authviz--secure { padding-top: 14px; }
.bx-authviz__secure {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line-2); border-radius: 999px;
  padding: 7px 14px 7px 8px; font-size: 13px; font-weight: 600;
  box-shadow: var(--shadow-md); white-space: nowrap; z-index: 4;
}
.bx-authviz__secure .lock { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--mint)); display: grid; place-items: center; color: #042027; flex: none; }
.bx-authviz__secure .lock svg { width: 14px; height: 14px; }
.bx-authviz__secure .pulse { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; animation: bxpulse 2.6s var(--ease) infinite; }
@keyframes bxpulse { 0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .45); } 70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); } 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); } }

/* Security reassurance line */
.bx-authsecure { display: flex; align-items: center; gap: 8px; margin-top: 22px; font-size: 13px; color: var(--muted-2); }
.bx-authsecure svg { width: 15px; height: 15px; flex: none; }

/* Premium success state (Check your inbox) */
.bx-authsuccess__icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(34, 197, 94, .12); color: #15803D; display: grid; place-items: center; margin-bottom: 22px; }
.bx-authsuccess__icon svg { width: 28px; height: 28px; }
.bx-authsuccess strong { color: var(--ink); font-weight: 600; }
.bx-authsuccess__actions { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.bx-authsuccess__retry { font-size: 14.5px; color: var(--muted); }
.bx-authsuccess__retry a { color: var(--cyan-700); font-weight: 600; position: relative; }
.bx-authsuccess__retry a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1.5px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.bx-authsuccess__retry a:hover::after { transform: scaleX(1); }
.bx-backlink { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); font-size: 14.5px; }
.bx-backlink svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.bx-backlink:hover svg { transform: translateX(-4px); }
@media (prefers-reduced-motion: reduce) { .bx-authviz__secure .pulse { animation: none !important; } }
body.reduce-motion .bx-authviz__secure .pulse { animation: none !important; }

/* Field error state */
.bx-input--error { border-color: rgba(239, 68, 68, .55); }
.bx-input--error:hover { border-color: rgba(239, 68, 68, .7); }
.bx-input--error:focus { border-color: #EF4444; box-shadow: 0 0 0 4px rgba(239, 68, 68, .14); }
.bx-fielderror { display: flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 13px; color: #B91C1C; }
.bx-fielderror svg { width: 14px; height: 14px; flex: none; }
.bx-fieldhint { margin-top: 8px; font-size: 12.5px; line-height: 1.5; color: var(--muted-2); }

/* ============================================================
   REGISTER — conversion split
   ============================================================ */
.bx-authsplit--register { grid-template-columns: 57% 43%; }
.bx-authsplit--register .bx-authform { justify-content: flex-start; padding-top: clamp(30px, 4vw, 58px); }

.bx-regbrand {
  position: relative;
  padding: clamp(30px, 4vw, 60px) clamp(28px, 4vw, 68px);
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--line-2);
  background:
    radial-gradient(65% 45% at 12% 16%, rgba(23, 196, 220, .16), transparent 60%),
    radial-gradient(55% 50% at 96% 96%, rgba(87, 220, 162, .12), transparent 60%),
    var(--paper);
}
.bx-regbrand__inner { width: 100%; max-width: 580px; margin-inline: auto; }
.bx-regbrand h1 { font-family: var(--serif); font-weight: 500; letter-spacing: -.02em; line-height: 1.02; font-size: clamp(2.1rem, 3.5vw, 3.15rem); margin: 18px 0 16px; color: var(--ink); }
.bx-regbrand h1 em { font-style: italic; color: var(--cyan-700); }
.bx-regbrand__lead { color: var(--muted); font-size: 1.08rem; line-height: 1.6; max-width: 48ch; margin-bottom: clamp(26px, 3.5vw, 38px); }

/* Benefits */
.bx-benefits { display: grid; margin-bottom: clamp(28px, 4vw, 40px); }
.bx-benefit { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line-2); }
.bx-benefit__num { font-family: var(--serif); font-size: 14px; color: var(--cyan-700); font-variant-numeric: tabular-nums; padding-top: 2px; min-width: 20px; }
.bx-benefit__body h3 { font-size: 15.5px; font-weight: 600; margin-bottom: 3px; }
.bx-benefit__body p { font-size: 14.5px; color: var(--muted); line-height: 1.5; max-width: 46ch; }

/* Full invoice card (line items + summary + status) */
.bx-invoicecard__lines { padding: 12px 0; border-bottom: 1px dashed var(--line); display: grid; gap: 9px; }
.bx-invoicecard__lines .li { display: flex; justify-content: space-between; font-size: 13.5px; gap: 16px; }
.bx-invoicecard__lines .li span:first-child { color: var(--muted); }
.bx-invoicecard__lines .li span:last-child { font-variant-numeric: tabular-nums; }
.bx-invoicecard__sum { padding: 12px 0 0; display: grid; gap: 8px; }
.bx-invoicecard__sum .li { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--muted); }
.bx-invoicecard__sum .li span:last-child { font-variant-numeric: tabular-nums; color: var(--ink); }
.bx-invoicecard__sum .li.total { padding-top: 12px; margin-top: 4px; border-top: 1px solid var(--line); }
.bx-invoicecard__sum .li.total span { font-weight: 700; }
.bx-invoicecard__sum .li.total span:last-child { font-family: var(--serif); font-size: 1.35rem; }
.bx-invoicecard__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.bx-invoicecard__foot small { font-size: 12px; color: var(--muted-2); }

/* Animated status pill */
.bx-invstatus { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; letter-spacing: .02em; padding: 5px 12px; border-radius: 999px; transition: background .45s var(--ease), color .45s var(--ease); }
.bx-invstatus::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.bx-invstatus.is-draft { background: rgba(12, 15, 18, .07); color: var(--muted); }
.bx-invstatus.is-sent { background: rgba(23, 196, 220, .16); color: var(--cyan-700); }
.bx-invstatus.is-viewed { background: rgba(255, 207, 74, .22); color: var(--yellow-ink); }
.bx-invstatus.is-paid { background: rgba(34, 197, 94, .16); color: #15803D; }

.bx-invconfirm {
  position: absolute; right: -8%; bottom: 16%;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line-2); border-radius: 999px;
  padding: 9px 14px; font-size: 13px; font-weight: 600; white-space: nowrap;
  box-shadow: var(--shadow-md); z-index: 4;
  opacity: 0; transform: translateY(8px) scale(.94); transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.bx-invconfirm.show { opacity: 1; transform: none; }
.bx-invconfirm i { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; }

/* Social proof */
.bx-regsocial { display: flex; align-items: center; gap: 14px 22px; flex-wrap: wrap; margin-top: clamp(24px, 3.5vw, 38px); }
.bx-regsocial__rate { display: inline-flex; align-items: center; gap: 10px; }
.bx-regsocial__rate .bx-stars svg { width: 15px; height: 15px; }
.bx-regsocial__rate b { font-size: 15px; }
.bx-regsocial__rate span { font-size: 13.5px; color: var(--muted); }
.bx-regsocial__stats { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); }
.bx-regsocial__stats b { color: var(--ink); font-variant-numeric: tabular-nums; }
.bx-regsocial__stats .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--muted-2); }
.bx-reglogos { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-top: 22px; }
.bx-reglogos img { height: 20px; width: auto; filter: grayscale(1) brightness(.4); opacity: .5; transition: opacity .3s var(--ease), filter .3s var(--ease); }
.bx-reglogos img:hover { opacity: .9; filter: grayscale(0); }

/* Form-side reassurance */
.bx-authform__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--cyan-700); margin-bottom: 14px; }
.bx-reassure { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 2px 0 22px; }
.bx-reassure span { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); }
.bx-reassure svg { width: 15px; height: 15px; color: #15803D; flex: none; }
.bx-freenote { border: 1px solid var(--line); border-radius: 14px; background: var(--paper); padding: 16px 18px; margin-top: 20px; margin-bottom: 24px; }
.bx-freenote h4 { font-size: 13px; font-weight: 700; letter-spacing: .02em; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.bx-freenote h4 .tag { font-size: 10.5px; font-weight: 700; letter-spacing: .04em; padding: 3px 8px; border-radius: 999px; background: var(--cyan); color: #042027; }
.bx-freenote ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.bx-freenote li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-2); }
.bx-freenote li svg { width: 15px; height: 15px; color: #15803D; flex: none; }

/* Register responsive */
@media (max-width: 1024px) { .bx-authsplit--register { grid-template-columns: 52% 48%; } }
@media (max-width: 900px) {
  .bx-authsplit--register { display: flex; flex-direction: column; }
  .bx-authsplit--register .bx-authform { order: 2; padding-top: clamp(28px, 8vw, 44px); }
  .bx-regbrand { order: 1; border-right: none; border-bottom: 1px solid var(--line-2); }
  .bx-benefits { display: none; }
  .bx-invconfirm { right: 0; }
  .bx-regbrand__lead { margin-bottom: 26px; }
}
@media (max-width: 520px) {
  .bx-regbrand__inner, .bx-authsplit--register .bx-authform__inner { max-width: 100%; }
  .bx-freenote ul { grid-template-columns: 1fr; }
  .bx-invconfirm { position: static; margin-top: 12px; box-shadow: none; border-color: var(--line); }
}







