
:root {
  --lbf-canvas: var(--abyss);
  --lbf-surface: var(--surface);
  --lbf-card: var(--surface);
  --lbf-card-2: var(--interactive);
  --lbf-line: rgba(255,255,255,0.14);
  --lbf-line-soft: rgba(255,255,255,0.09);
  --lbf-text: var(--starlight);
  --lbf-muted: var(--silver);
  --lbf-dim: var(--lead);
  --lbf-accent: var(--accent);
  --lbf-data: var(--ghost-blue);
  --lbf-data-2: var(--accent-hover);
  --lbf-on-accent: var(--abyss);

  --lbf-form-bg: var(--surface);
  --lbf-form-text: var(--starlight);
  --lbf-form-muted: var(--silver);
  --lbf-form-line: rgba(255,255,255,0.14);

  --font: var(--font-text);
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;
  --t-cap: var(--text-caption);
  --t-sm: var(--text-body-sm);
  --t-body: var(--text-body);
  --t-lead: var(--text-subheading);
  --t-h3: var(--text-heading-sm);
  --t-h2: var(--text-heading);
  --t-h1: var(--text-display);
  --t-stat: var(--text-heading-lg);
  --r: var(--r-card);
  --r-sm: var(--r-container);
  --wrap: var(--page-max);
  --gap: var(--section-gap);
}

.hero--left .hero__inner { margin: 0; }

.cardgrid--tiles .card { position: relative; min-height: 200px; }
.cardgrid--tiles .card .eyebrow { position: absolute; top: 20px; inset-inline-end: 22px; margin: 0; }
.cardgrid--tiles .card__title { margin-top: auto; margin-bottom: 8px; }

.process__row { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
@media (max-width: 980px) { .process__row { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 600px) { .process__row { grid-template-columns: 1fr; } }
.step { padding: 24px; background: var(--lbf-card); border: 1px solid var(--lbf-line);
        border-radius: var(--r); min-height: 210px; display: flex; flex-direction: column; }
.step h3 { margin-bottom: 10px; }
.step p { font-size: var(--t-sm); color: var(--lbf-muted); line-height: 1.6; margin-top: auto; }

.step__num { font-family: var(--mono); font-size: var(--t-cap); letter-spacing: 0.12em;
             color: var(--lbf-accent); margin-bottom: 38px; }

.statement { border-block: 1px solid var(--lbf-line); }
.statement p { font-size: clamp(1.4rem, 2.5vw, 2.1rem); font-weight: 600; letter-spacing: -0.02em;
               line-height: 1.3; color: var(--lbf-muted); max-width: 36ch; }
.statement strong { color: var(--lbf-text); font-weight: 600; }

.faqsec__grid { display: grid; grid-template-columns: minmax(0,0.8fr) minmax(0,1.2fr); gap: 56px; align-items: start; }
@media (max-width: 900px) { .faqsec__grid { grid-template-columns: 1fr; gap: 28px; } }
.faqsec h2 { max-width: 13ch; }

.qcards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
@media (max-width: 860px) { .qcards { grid-template-columns: 1fr; } }
.qcard { margin: 0; padding: 28px; border-radius: var(--r); display: flex; flex-direction: column; gap: 20px; }
.qcard blockquote { margin: 0; font-size: 1.125rem; font-weight: 600; letter-spacing: -0.012em; line-height: 1.45; }
.qcard figcaption { margin-top: auto; display: flex; align-items: center; gap: 12px; font-size: var(--t-sm); }
.qcard__mark { width: 30px; height: 30px; border-radius: 8px; flex: none; }

.qcard--accent { background: var(--lbf-accent); color: var(--lbf-on-accent); }

.qcard--light { background: var(--lbf-text); color: var(--lbf-canvas); }

.up { color: var(--lbf-data); font-weight: 600; font-variant-numeric: tabular-nums; }

.dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--lbf-data-2); margin-inline-end: 8px; vertical-align: 1px;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.urgency__row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 6px 26px; max-width: var(--wrap); margin-inline: auto;
}
.urgency__sep { color: var(--lbf-line); }
@media (max-width: 760px) {

  .urgency__row { gap: 0; }
  .urgency__sep { display: none; }
  .urgency__item { display: none; }
  .urgency__item.is-on, .urgency__row:not([data-rotating]) .urgency__item:first-child { display: block; }
}

.stats__row--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 860px) { .stats__row--three { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .stats__row--three { grid-template-columns: 1fr; } }

.stats__value, .stats__label, .mini__label, .mini__num,
.card__title, .calc__label, .calc__cell dt,
.footer__col h3, .footer__col p, .eyebrow, .hero__sub,
.live, .trustrow__item, .btn { overflow-wrap: anywhere; }
h1, h2, h3, .statement p, .footer__brand { overflow-wrap: break-word; }

.btn { max-width: 100%; box-sizing: border-box; }

@media (max-width: 560px) { .btn { white-space: normal; } }

.hero--form .hero__grid { justify-items: stretch; }

.hero--form .hero__grid > * { min-width: 0; width: 100%; }

.btn-row .btn, .openacc__row .btn, .ctastrip .btn { min-width: 0; }
@media (max-width: 480px) { .signup-card { padding: 22px 18px; } }

.signup-form .field, .signup-form > * { min-width: 0; }
.signup-card .inp, .signup-card input { min-width: 0; width: 100%; }

.site-header { position: sticky; top: 0; }

.ticker {
  background: var(--lbf-surface);
  border-bottom: 1px solid var(--lbf-line-soft);
  overflow: hidden;
  padding-block: 9px;
}
.ticker__track {
  display: flex; width: max-content;
  animation: tickerScroll 40s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__group { display: flex; gap: 36px; padding-inline: 18px; }
.ticker__item {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-size: var(--t-sm); white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.ticker__sym { font-weight: 600; color: var(--lbf-text); }
.ticker__price { color: var(--lbf-muted); }
.ticker__chg { color: var(--lbf-data); font-family: var(--mono); font-size: var(--t-cap); }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

[dir="rtl"] .ticker__track { animation-name: tickerScrollRtl; }
@keyframes tickerScrollRtl { from { transform: translateX(0); } to { transform: translateX(50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
  .dot { animation: none; }
}

.hero--form .hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 56px; align-items: start;
}
@media (max-width: 980px) {
  .hero--form .hero__grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero--form .hero__inner { max-width: none; padding-block: 0; }
.hero--form { padding-block: clamp(48px, 6vw, 88px); }

.hero--form h1 { max-width: 17ch; font-size: clamp(1.75rem, 3.2vw, 3rem); }
@supports (font-size: 1cqi) {
  .hero--form .hero__inner { container-type: inline-size; }
  .hero--form h1 { font-size: clamp(1.5rem, 8.5cqi, var(--t-h1)); }
}
.hero--form .hero__sub { max-width: 52ch; margin-top: 20px; }

.avatars { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.avatars__stack { display: flex; }
.avatars__stack span {
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: var(--t-cap); font-weight: 700; color: var(--lbf-on-accent);
  background: var(--lbf-text); border: 2px solid var(--lbf-canvas);
  margin-inline-start: -8px;
}
.avatars__stack span:first-child { margin-inline-start: 0; }
.avatars__stack span:nth-child(2) { background: var(--lbf-accent); color: #fff; }
.avatars__stack span:nth-child(4) { background: var(--lbf-data); }
.rating__stars { color: var(--lbf-accent); letter-spacing: 2px; font-size: var(--t-sm); }
.rating__value { font-weight: 700; margin-inline-start: 6px; }
.rating__sub { display: block; font-size: var(--t-cap); color: var(--lbf-dim); margin-top: 2px; }

.trustrow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.trustrow__item {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 16px; font-size: var(--t-sm);
  background: var(--lbf-card); border: 1px solid var(--lbf-line-soft);
  border-radius: var(--r-pill); color: var(--lbf-muted);
}
.trustrow__item svg { color: var(--lbf-accent); }
.trustrow__item--data svg { color: var(--lbf-data); }

.live {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 22px; padding: 11px 18px;
  background: var(--lbf-card); border: 1px solid var(--lbf-line-soft);
  border-radius: var(--r-pill); font-size: var(--t-sm); color: var(--lbf-muted);
}
.live__value { color: var(--lbf-data); font-weight: 700; font-variant-numeric: tabular-nums; }

.signup-card {
  background: var(--lbf-form-bg);
  color: var(--lbf-form-text);
  border: 1px solid var(--lbf-form-line);
  border-radius: var(--r);
  padding: 30px;
}
.signup-card .signup__title { color: var(--lbf-form-text); }
.signup-card .signup__title { font-size: 1.625rem; margin-bottom: 6px; }
.signup-card .signup__sub { font-size: var(--t-sm); color: var(--lbf-form-muted); margin-bottom: 24px; }
.signup-card .signup-form { grid-template-columns: 1fr; }
.signup-card .btn--primary { width: 100%; padding: 16px 26px; font-size: var(--t-body); }
.signup-card .signup__legal { color: var(--lbf-form-muted); text-align: center; display: flex; align-items: center; justify-content: center; gap: 7px; }

.hp {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

.signup-ok { text-align: center; padding-block: 40px; }
.signup-ok__mark {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 18px;
  display: grid; place-items: center;
  background: rgba(81, 187, 148, 0.14); color: var(--lbf-data); font-size: 26px;
}
.signup-ok h3 { margin-bottom: 8px; }
.signup-ok p { color: var(--lbf-muted); font-size: var(--t-sm); }

.card--edge { border-inline-start: 3px solid var(--lbf-accent); }
.card--edge:nth-child(2) { border-inline-start-color: var(--lbf-data-2); }
.card--edge:nth-child(3) { border-inline-start-color: var(--lbf-data); }
.card--edge .card__title { margin-top: 0; margin-bottom: 10px; }

.meter { height: 6px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; margin-top: 10px; }
.meter > i { display: block; height: 100%; border-radius: inherit; background: var(--lbf-accent); }
.meter--data > i { background: var(--lbf-data); }
.meter--alt > i { background: var(--lbf-data-2); }
.aipanel__row { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.aipanel__row:last-child { border-bottom: 0; }
.aipanel__head { display: flex; justify-content: space-between; gap: 16px; font-size: var(--t-sm); }
.aipanel__head span:first-child { color: var(--lbf-muted); }
.aipanel__head span:last-child { color: var(--lbf-data); font-weight: 600; }
.aipanel__fig {
  width: 84px; height: 84px; border-radius: var(--r-sm);
  overflow: hidden; margin: 0 auto 16px; background: var(--lbf-card-2);
}
.aipanel__fig img { width: 100%; height: 100%; object-fit: cover; }
.aipanel > h3 { text-align: center; margin-bottom: 20px; }

.calcgrid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px; align-items: start; }
@media (max-width: 900px) { .calcgrid { grid-template-columns: 1fr; } }

.calc {
  background: var(--lbf-card); border: 1px solid var(--lbf-line);
  border-radius: var(--r); padding: 30px;
}
.calc__label { font-size: var(--t-sm); color: var(--lbf-muted); text-align: center; }
.calc__value {
  font-size: var(--t-stat); font-weight: 800; letter-spacing: -0.03em;
  text-align: center; margin-top: 4px; font-variant-numeric: tabular-nums;
}
.calc__slider { margin-top: 26px; }
.calc__slider > label { display: block; font-size: var(--t-sm); color: var(--lbf-muted); margin-bottom: 12px; }
.calc__ends { display: flex; justify-content: space-between; font-size: var(--t-cap); color: var(--lbf-dim); margin-top: 8px; }

.range {
  -webkit-appearance: none; appearance: none;

  width: 100%; margin: 0; height: 5px; border-radius: 999px; outline: none;
  background: linear-gradient(90deg, var(--lbf-accent) 0%, var(--lbf-accent) var(--fill, 25%), rgba(255,255,255,0.12) var(--fill, 25%), rgba(255,255,255,0.12) 100%);
}
[dir="rtl"] .range { transform: scaleX(-1); }
.range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--lbf-text); border: 3px solid var(--lbf-accent);
  cursor: pointer;
}
.range::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--lbf-text); border: 3px solid var(--lbf-accent);
  cursor: pointer; box-sizing: border-box;
}
.range:focus-visible { outline: 2px solid var(--lbf-accent); outline-offset: 4px; }

.calc__out { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 26px; }
.calc__cell {
  background: var(--lbf-card-2); border: 1px solid var(--lbf-line-soft);
  border-radius: var(--r-sm); padding: 14px; text-align: center;
}
.calc__cell dt { font-size: var(--t-cap); color: var(--lbf-dim); margin-bottom: 5px; }
.calc__cell dd { margin: 0; font-size: 1.25rem; font-weight: 700; color: var(--lbf-data); font-variant-numeric: tabular-nums; }
.calc__note { margin-top: 16px; font-size: var(--t-cap); color: var(--lbf-dim); line-height: 1.6; text-align: center; }
.calc .btn { width: 100%; margin-top: 16px; }

.calcgrid > *, .minis > *, .hero__inner { min-width: 0; }
.minis { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.mini {
  background: var(--lbf-card); border: 1px solid var(--lbf-line-soft);
  border-radius: var(--r); padding: 26px 20px; text-align: center;
  display: flex; flex-direction: column; justify-content: center; min-height: 132px;
}
.mini__num { font-size: 1.875rem; font-weight: 800; letter-spacing: -0.025em; font-variant-numeric: tabular-nums; }
.mini__label { margin-top: 6px; font-size: var(--t-sm); color: var(--lbf-muted); }

.seclist { display: grid; gap: 12px; }
.secrow {
  display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 16px;
  background: var(--lbf-card); border: 1px solid var(--lbf-line-soft);
  border-radius: var(--r); padding: 20px;
}
.secrow__icon {
  width: 42px; height: 42px; border-radius: var(--r-sm);
  display: grid; place-items: center; font-size: 20px;
  background: rgba(81, 187, 148, 0.12); color: var(--lbf-data);
}
.secrow h3 { font-size: var(--t-body); margin-bottom: 5px; }
.secrow p { font-size: var(--t-sm); color: var(--lbf-muted); line-height: 1.6; }

.badges { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
@media (max-width: 560px) { .badges { grid-template-columns: 1fr; } }
.badges li {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; font-size: var(--t-sm); color: var(--lbf-muted);
  background: var(--lbf-card); border: 1px solid var(--lbf-line-soft); border-radius: var(--r-sm);
}
.badges svg { color: var(--lbf-accent); flex: none; }

.devices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.devices li {
  background: var(--lbf-card-2); border: 1px solid var(--lbf-line-soft);
  border-radius: var(--r-sm); padding: 22px 14px; text-align: center;
}
.devices svg { font-size: 26px; color: var(--lbf-accent); }
.devices span { display: block; margin-top: 10px; font-size: var(--t-sm); color: var(--lbf-muted); }
.uptime {
  margin-top: 12px; padding: 12px; border-radius: var(--r-sm);
  background: var(--lbf-card-2); border: 1px solid var(--lbf-line-soft);
  display: flex; align-items: center; justify-content: center; gap: 9px;
  font-size: var(--t-sm); color: var(--lbf-data); font-weight: 600;
}

.qcards--tri { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1040px) { .qcards--tri { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 700px) { .qcards--tri { grid-template-columns: 1fr; } }

.qcard--dark {
  background: var(--lbf-card); border: 1px solid var(--lbf-line-soft); color: var(--lbf-text);
}
.qcard--dark blockquote { font-size: var(--t-body); font-weight: 400; line-height: 1.62; color: var(--lbf-muted); }
.qcard--dark figcaption span { color: var(--lbf-dim); }
.qcard--dark .qcard__mark { background: var(--lbf-accent); }
.qcard--dark .qcard__foot { border-top-color: var(--lbf-line-soft); }
.qcard { min-height: 0; gap: 20px; }
.qcard__top { display: flex; align-items: center; gap: 12px; }
.qcard__mark { display: grid; place-items: center; font-weight: 700; color: #fff; }
.qcard--light .qcard__mark, .qcard--accent .qcard__mark { color: var(--lbf-text); }
.qcard__who strong { display: block; font-weight: 600; }
.qcard__who span { font-size: var(--t-cap); }
.qcard__ok {
  font-size: var(--t-cap); padding: 2px 9px; border-radius: 999px;
  background: rgba(81, 187, 148, 0.15); color: var(--lbf-data); margin-inline-start: 8px;
}
.qcard__stars { color: var(--lbf-accent); letter-spacing: 2px; font-size: var(--t-sm); }
.qcard__foot {
  margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(11, 11, 11, 0.14);
  display: flex; justify-content: space-between; gap: 16px;
  font-size: var(--t-cap); color: inherit; opacity: 0.85;
}

.qcard--light .qcard__stars, .qcard--accent .qcard__stars,
.qcard--light .up, .qcard--accent .up { color: inherit; }
.qcard--light .qcard__ok, .qcard--accent .qcard__ok {
  background: rgba(127, 127, 127, 0.22); color: inherit;
}

.whylist { max-width: 78ch; }
.whylist li {
  position: relative; padding: 16px 0 16px 26px;
  border-bottom: 1px solid var(--lbf-line-soft);
  color: var(--lbf-muted); line-height: 1.65;
}
[dir="rtl"] .whylist li { padding: 16px 26px 16px 0; }
.whylist li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 25px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--lbf-accent);
}
.whylist strong { color: var(--lbf-text); font-weight: 600; }
.whylist li:last-child { border-bottom: 0; }

.techlist { display: grid; gap: 44px; max-width: 72ch; margin-inline: auto; }
.techlist h3 { color: var(--lbf-text); margin-bottom: 14px; }
.techlist p + p { margin-top: 12px; }
.techlist p { color: var(--lbf-muted); line-height: 1.72; }

.finalcta__panel {
  background: linear-gradient(140deg, var(--lbf-card) 0%, var(--lbf-card-2) 100%);
  border: 1px solid var(--lbf-line);
  border-radius: var(--r);
  padding: clamp(36px, 6vw, 72px);
  color: var(--lbf-text);
}
.finalcta__panel h2, .finalcta__panel h3, .finalcta__panel em { color: var(--lbf-text); }
.finalcta__panel .lede { color: var(--lbf-muted); }
.finalcta__note { margin-top: 18px; font-size: var(--t-cap); color: var(--lbf-dim); }

.section--abyss.statement p, .section--abyss .statement p,
.section--abyss.statement strong, .section--abyss .statement strong { color: inherit; }

.ctastrip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px 24px; margin-top: 44px; padding: 20px 26px;
  background: var(--lbf-card); border: 1px solid var(--lbf-line);
  border-radius: var(--r); color: var(--lbf-text); text-align: center;
}
.ctastrip p { margin: 0; font-size: var(--t-lead); font-weight: 600; color: var(--lbf-text); }
.ctastrip .btn { flex: none; }
@media (max-width: 560px) { .ctastrip .btn { width: 100%; } }

.regs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.regs li {
  padding: 5px 12px; border-radius: var(--r-pill);
  background: var(--lbf-card); border: 1px solid var(--lbf-line-soft);
  font-size: var(--t-cap); color: var(--lbf-dim); margin-bottom: 0;
}

.langpick { position: relative; }
.langpick > summary {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 10px; border-radius: var(--r-sm);
  border: 1px solid var(--lbf-line); background: var(--lbf-card);
  color: var(--lbf-text); font-size: var(--t-cap); font-weight: 600;
  cursor: pointer; user-select: none; list-style: none; white-space: nowrap;
}
.langpick > summary::-webkit-details-marker { display: none; }
.langpick > summary::after {
  content: ""; width: 6px; height: 6px; margin-top: -3px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.langpick[open] > summary::after { margin-top: 2px; transform: rotate(225deg); }
.langpick > summary:focus-visible { outline: 2px solid var(--lbf-accent); outline-offset: 2px; }
.langpick__menu {
  position: absolute; z-index: 60; top: calc(100% + 6px); inset-inline-end: 0;
  display: grid; grid-template-columns: repeat(2, minmax(58px, 1fr)); gap: 2px;
  padding: 6px; border-radius: var(--r-sm);
  background: var(--lbf-card); border: 1px solid var(--lbf-line);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}
.langpick__menu a {
  padding: 6px 10px; border-radius: var(--r-sm); text-align: center;
  font-size: var(--t-cap); color: var(--lbf-muted); white-space: nowrap;
}
.langpick__menu a:hover { color: var(--lbf-text); background: var(--lbf-card-2); }
.langpick__menu a[aria-current="true"] {
  color: var(--lbf-text); background: var(--lbf-card-2); font-weight: 600;
}
.footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-weight: 700; }

.iti { width: 100%; display: block; }
.iti__flag-container { z-index: 3; }
.iti--separate-dial-code .iti__selected-flag { background: transparent; border-radius: var(--r-sm) 0 0 var(--r-sm); }
.iti--separate-dial-code .iti__selected-dial-code { color: var(--lbf-muted); font-size: var(--t-sm); }
.iti__arrow { border-top-color: var(--lbf-dim); }
.iti__arrow--up { border-bottom-color: var(--lbf-dim); }
.iti__country-list {
  background: var(--lbf-card); color: var(--lbf-text);
  border: 1px solid var(--lbf-line); border-radius: var(--r-sm);
  box-shadow: 0 24px 48px -24px rgba(0,0,0,0.7);
  max-height: 260px;
}
.iti__country { padding: 8px 12px; font-size: var(--t-sm); }
.iti__country.iti__highlight, .iti__country:hover { background: var(--lbf-card-2); }
.iti__divider { border-bottom-color: var(--lbf-line); }
.iti__dial-code { color: var(--lbf-dim); }
[dir="rtl"] .iti--separate-dial-code .iti__selected-flag { border-radius: 0 var(--r-sm) var(--r-sm) 0; }

[dir="rtl"] .ticker__item,
[dir="rtl"] .live__value,
[dir="rtl"] .up {
  direction: ltr;
  unicode-bidi: isolate;
}

[dir="rtl"] .prose, [dir="rtl"] .frow { text-align: right; }
[dir="rtl"] .step + .step::before { left: auto; right: -14px; transform: translateY(-50%) rotate(225deg); }
[dir="rtl"] .skip-link:focus { left: auto; right: 16px; }
[dir="rtl"] .avatars__stack span { margin-inline-start: -8px; }

.brand__mark--text {
  clip-path: none;
  display: grid; place-items: center;
  font-size: 0.6875rem; font-weight: 800; letter-spacing: -0.02em;
  color: #fff;
}
.brand__mark--text::after { content: none; }
.footer__brand .brand__mark--text { flex: none; }

.skip-link {
  left: auto;
  inset-inline-start: 16px;
  width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.skip-link:focus {
  left: auto; inset-inline-start: 16px;
  width: auto; height: auto; overflow: visible;
  clip: auto; clip-path: none;
}

.qcard__foot { flex-wrap: wrap; }
.qcard__foot > span { min-width: 0; overflow-wrap: anywhere; }
.qcard blockquote { overflow-wrap: anywhere; }

:root {
  --accent: #ffcc00;
  --accent-hover: #ffcc00;
  --abyss: #000000;
  --starlight: #ffffff;
  --font-display: "Albert Sans";
  --font-text: "Albert Sans";
  --r-card: 15px;
}
