:root {
  --green: #3affbb;
  --green-deep: #20d89a;
  --ink: #141b26;
  --ink-soft: #1b2533;
  --ink-lighter: #2a3544;
  --paper: #f7faf9;
  --white: #ffffff;
  --muted: #9ba8b7;
  --border: rgba(255,255,255,.11);
  --shadow: 0 30px 80px rgba(2, 8, 16, .28);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: var(--green); color: var(--ink); }

.skip-link {
  position: fixed;
  inset-inline-start: 18px;
  top: -100px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--green);
  border-radius: 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }
.container { width: var(--container); margin-inline: auto; }
.section-pad { padding: 120px 0; }
.page-shell { position: relative; isolation: isolate; overflow: hidden; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(20,27,38,.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: rgba(255,255,255,.08);
}
.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { width: 145px; display: inline-flex; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 32px; margin-inline-start: auto; }
.desktop-nav a {
  color: rgba(255,255,255,.72);
  font-size: .92rem;
  font-weight: 700;
  transition: color .2s ease;
}
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--green); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.status-pill {
  height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  padding: 0 15px;
  font-size: .78rem;
  font-weight: 800;
}
.status-pill { color: rgba(255,255,255,.8); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(58,255,187,.10); }
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid var(--border); background: rgba(255,255,255,.04); border-radius: 50%; cursor: pointer; position: relative; }
.menu-button span { position: absolute; width: 17px; height: 1.5px; background: var(--white); left: 12px; transition: transform .2s ease, top .2s ease; }
.menu-button span:first-child { top: 16px; }
.menu-button span:last-child { top: 23px; }
.menu-button[aria-expanded="true"] span:first-child { top: 20px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { top: 20px; transform: rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 88px 0 auto;
  background: rgba(20,27,38,.98);
  border-bottom: 1px solid var(--border);
  padding: 24px 20px 30px;
  display: grid;
  gap: 12px;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 15px 12px; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 1.05rem; font-weight: 800; }

.hero {
  min-height: 840px;
  padding-top: 170px;
  display: flex;
  align-items: center;
  position: relative;
  background:
    radial-gradient(circle at 8% 12%, rgba(58,255,187,.12), transparent 28%),
    radial-gradient(circle at 86% 28%, rgba(58,255,187,.08), transparent 25%),
    var(--ink);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -330px;
  height: 520px;
  border-radius: 50% 50% 0 0;
  background: var(--paper);
  z-index: -1;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-orb-one { width: 420px; height: 420px; border: 1px solid rgba(58,255,187,.12); inset: 125px auto auto -240px; }
.hero-orb-two { width: 620px; height: 620px; border: 1px solid rgba(255,255,255,.05); inset: -160px -250px auto auto; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; position: relative; z-index: 2; }
.hero-copy { max-width: 670px; }
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow { border: 1px solid rgba(58,255,187,.28); background: rgba(58,255,187,.07); padding: 9px 13px; border-radius: 999px; }
.eyebrow-icon { width: 20px; height: 20px; display: grid; place-items: center; }
.eyebrow-icon svg { width: 18px; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 28px 0 24px;
  font-size: clamp(3.5rem, 7.4vw, 6.55rem);
  line-height: .93;
  letter-spacing: -.065em;
  font-weight: 900;
}
h1 span, h2 span { color: var(--green); }
.hero-lead {
  max-width: 610px;
  color: rgba(255,255,255,.67);
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  line-height: 1.7;
}
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .94rem;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button svg { width: 19px; height: 19px; transition: transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:hover svg { transform: translateX(3px); }
.button-primary { color: var(--ink); background: var(--green); box-shadow: 0 18px 42px rgba(58,255,187,.17); }
.button-primary:hover { background: #6affc9; }
.button-ghost { border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: rgba(58,255,187,.5); color: var(--green); }
.hero-proof { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 48px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.09); max-width: 610px; }
.hero-proof div { display: grid; gap: 7px; }
.hero-proof strong { font-size: .92rem; }
.hero-proof span { color: rgba(255,255,255,.48); font-size: .83rem; line-height: 1.5; }

.hero-visual { min-height: 620px; position: relative; display: grid; place-items: center; }
.visual-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(58,255,187,.14); filter: blur(90px); }
.logo-stage { width: min(390px, 80vw); border-radius: 38px; overflow: hidden; box-shadow: var(--shadow); transform: rotate(2deg); position: relative; z-index: 2; }
.logo-stage img { width: 100%; height: auto; }
.static-logo { display: none; }
.payment-card {
  position: absolute;
  z-index: 3;
  width: min(360px, 84vw);
  padding: 22px;
  border-radius: 23px;
  background: rgba(19,27,38,.94);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 35px 70px rgba(3,8,14,.35);
  backdrop-filter: blur(16px);
}
.payment-card-main { right: -24px; bottom: 38px; transform: rotate(-2deg); }
.payment-card-head { display: grid; grid-template-columns: auto 1fr auto; gap: 13px; align-items: center; }
.mini-brand { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; color: var(--ink); background: var(--green); font-size: 1.35rem; font-weight: 950; }
.payment-card-head div { display: grid; gap: 4px; }
.payment-card-head .label { color: rgba(255,255,255,.46); font-size: .72rem; }
.payment-card-head strong { font-size: .9rem; }
.check-badge { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: rgba(58,255,187,.10); color: var(--green); }
.check-badge svg { width: 19px; }
.progress-track { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin: 21px 0; }
.progress-track span { height: 6px; border-radius: 999px; background: rgba(255,255,255,.1); }
.progress-track span:first-child { background: var(--green); }
.payment-row { display: flex; justify-content: space-between; align-items: center; font-size: .83rem; }
.payment-row + .payment-row { margin-top: 12px; }
.payment-row.muted { color: rgba(255,255,255,.48); }
.floating-chip { position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 9px; padding: 12px 15px; border-radius: 999px; background: var(--white); color: var(--ink); box-shadow: 0 15px 40px rgba(4,10,16,.25); font-size: .77rem; font-weight: 900; white-space: nowrap; }
.floating-chip svg { width: 18px; }
.floating-chip-one { top: 86px; left: -18px; transform: rotate(-5deg); }
.floating-chip-two { top: 188px; right: -38px; transform: rotate(4deg); background: var(--green); }
.pulse-icon { width: 9px; height: 9px; border-radius: 50%; background: var(--ink); position: relative; }
.pulse-icon::after { content: ""; position: absolute; inset: -5px; border: 1px solid rgba(20,27,38,.3); border-radius: 50%; animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { transform: scale(.7); opacity: .8; } 100% { transform: scale(1.4); opacity: 0; } }

.trust-strip { background: var(--green); color: var(--ink); position: relative; z-index: 4; }
.trust-grid { min-height: 118px; display: grid; grid-template-columns: repeat(4,1fr); }
.trust-grid > div { display: flex; align-items: center; gap: 13px; border-inline-end: 1px solid rgba(20,27,38,.15); padding: 24px 30px; }
.trust-grid > div:first-child { padding-inline-start: 0; }
.trust-grid > div:last-child { border: 0; padding-inline-end: 0; }
.trust-icon { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(20,27,38,.27); border-radius: 50%; font-size: .7rem; font-weight: 900; }
.trust-grid strong { font-size: .84rem; line-height: 1.35; }

.how-section, .faq-section { background: var(--paper); color: var(--ink); }
.section-heading { max-width: 720px; }
.section-heading h2, .split-copy h2, .faq-intro h2, .closing-card h2 {
  margin: 18px 0 24px;
  font-size: clamp(2.7rem, 5.8vw, 5rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 900;
}
.section-heading p, .split-copy > p, .faq-intro > p { color: #647080; max-width: 630px; font-size: 1.04rem; line-height: 1.72; }
.steps-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.step-card { min-height: 330px; padding: 30px; border: 1px solid #dde4e5; border-radius: var(--radius-lg); background: var(--white); position: relative; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.step-card::after { content: ""; position: absolute; width: 170px; height: 170px; border-radius: 50%; background: rgba(58,255,187,.16); right: -90px; bottom: -95px; transition: transform .25s ease; }
.step-card:hover { transform: translateY(-7px); border-color: rgba(58,255,187,.9); box-shadow: 0 26px 60px rgba(20,27,38,.08); }
.step-card:hover::after { transform: scale(1.25); }
.step-number { font-size: .72rem; font-weight: 900; letter-spacing: .14em; color: #8b97a3; }
.step-icon { width: 70px; height: 70px; margin: 54px 0 28px; border-radius: 21px; display: grid; place-items: center; color: var(--ink); background: var(--green); }
.step-icon svg { width: 35px; }
.step-card h3 { font-size: 1.32rem; letter-spacing: -.025em; margin-bottom: 12px; }
.step-card p { color: #707b88; font-size: .93rem; line-height: 1.65; }

.why-section { background: var(--ink); position: relative; }
.why-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 15%, rgba(58,255,187,.12), transparent 28%); pointer-events: none; }
.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; position: relative; }
.feature-list { margin-top: 42px; display: grid; gap: 22px; }
.feature-item { display: grid; grid-template-columns: auto 1fr; gap: 15px; }
.feature-check { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; color: var(--ink); background: var(--green); font-size: .8rem; font-weight: 900; margin-top: 2px; }
.feature-item strong { display: block; margin-bottom: 6px; }
.feature-item p { color: rgba(255,255,255,.47); font-size: .87rem; line-height: 1.55; margin: 0; }
.merchant-panel { border-radius: 30px; border: 1px solid rgba(255,255,255,.11); background: rgba(255,255,255,.035); padding: 22px; box-shadow: var(--shadow); }
.merchant-topline { display: flex; align-items: center; justify-content: space-between; padding: 3px 3px 18px; color: rgba(255,255,255,.55); font-size: .76rem; font-weight: 800; }
.live-indicator { display: inline-flex; align-items: center; gap: 8px; }
.live-indicator i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(58,255,187,.08); }
.checkout-window { overflow: hidden; border-radius: 20px; background: #eef3f1; color: var(--ink); }
.checkout-browser { height: 38px; display: flex; align-items: center; gap: 6px; padding: 0 14px; background: #dfe7e4; }
.checkout-browser i { width: 7px; height: 7px; border-radius: 50%; background: #a9b6b0; }
.checkout-content { padding: 32px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 25px; }
.product-placeholder { min-height: 310px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(145deg,#d9e4e0,#edf4f1); }
.product-shape { width: 115px; height: 175px; border-radius: 50px 50px 25px 25px; background: var(--ink); position: relative; transform: rotate(-8deg); }
.product-shape::before { content: ""; position: absolute; width: 48px; height: 23px; border-radius: 8px; background: var(--green); top: 26px; left: 34px; }
.product-shape::after { content: ""; position: absolute; width: 74px; height: 10px; border-radius: 10px; background: rgba(255,255,255,.15); left: 20px; bottom: 34px; }
.checkout-details { padding-top: 8px; }
.skeleton { display: block; height: 12px; border-radius: 999px; background: #c9d4d0; margin-bottom: 12px; }
.skeleton.wide { width: 72%; }
.skeleton.medium { width: 48%; margin-bottom: 30px; }
.option-card { min-height: 74px; display: grid; grid-template-columns: auto 1fr auto; gap: 11px; align-items: center; border: 1px solid #cbd5d1; border-radius: 13px; padding: 12px; margin-bottom: 12px; background: #fff; }
.option-card.selected { border: 2px solid var(--ink); }
.option-logo { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 10px; background: var(--green); font-weight: 950; }
.option-card div { display: grid; gap: 4px; }
.option-card strong { font-size: .78rem; }
.option-card span:not(.radio) { font-size: .58rem; color: #78847f; }
.radio { width: 17px; height: 17px; border-radius: 50%; border: 1px solid #9daaa5; position: relative; }
.selected .radio { border: 5px solid var(--ink); }
.muted-option { min-height: 55px; grid-template-columns: 1fr auto; }
.card-line { height: 9px; width: 60%; border-radius: 99px; background: #cbd5d1; }
.checkout-button { height: 46px; display: grid; place-items: center; border-radius: 12px; background: var(--ink); color: var(--green); font-size: .77rem; font-weight: 900; margin-top: 17px; }

.brand-banner-section {
  background: var(--paper);
  padding: 100px 0 110px;
  display: grid;
  place-items: center;
}
.brand-banner-section .container {
  width: min(1080px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  justify-content: center;
}
.brand-banner {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(20,27,38,.11);
}
.brand-banner picture { display: block; width: 100%; }
.brand-banner img { width: 100%; height: auto; object-fit: cover; object-position: center; }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.accordion { border-top: 1px solid #d6dddd; }
details { border-bottom: 1px solid #d6dddd; }
summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 26px 0; font-weight: 850; font-size: 1.05rem; }
summary::-webkit-details-marker { display: none; }
summary i { width: 28px; height: 28px; border: 1px solid #bdc7c7; border-radius: 50%; position: relative; }
summary i::before, summary i::after { content: ""; position: absolute; background: var(--ink); top: 13px; left: 8px; width: 10px; height: 1.5px; transition: transform .2s ease; }
summary i::after { transform: rotate(90deg); }
details[open] summary i { background: var(--green); border-color: var(--green); }
details[open] summary i::after { transform: rotate(0); }
details p { color: #66717f; margin: -7px 45px 25px 0; line-height: 1.72; font-size: .94rem; }

.closing-section { padding: 0 0 110px; background: var(--paper); }
.closing-card { min-height: 330px; border-radius: var(--radius-xl); padding: 54px; background: var(--green); color: var(--ink); display: flex; align-items: end; justify-content: space-between; gap: 30px; position: relative; overflow: hidden; }
.closing-card::after { content: ""; position: absolute; width: 500px; height: 500px; border: 90px solid rgba(20,27,38,.08); border-radius: 50%; right: -180px; top: -210px; }
.dark-kicker { color: var(--ink); }
.closing-card h2 { margin-bottom: 0; position: relative; z-index: 2; }
.button-dark { background: var(--ink); color: var(--green); position: relative; z-index: 2; }
.button-dark:hover { color: var(--white); }

.site-footer { background: #0d131d; padding: 72px 0 28px; }
.footer-main { display: flex; justify-content: space-between; gap: 40px; align-items: end; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand img { width: 155px; }
.footer-brand p { margin: 20px 0 0; color: rgba(255,255,255,.48); font-size: .92rem; }
.footer-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.license-line, .al-rabba-link { min-height: 44px; display: inline-flex; align-items: center; gap: 9px; padding: 0 14px; border: 1px solid rgba(255,255,255,.11); border-radius: 999px; font-size: .76rem; font-weight: 800; color: rgba(255,255,255,.67); }
.license-line svg { width: 18px; color: var(--green); }
.al-rabba-link { color: var(--green); transition: .2s ease; }
.al-rabba-link:hover { background: var(--green); color: var(--ink); }
.footer-bottom { display: grid; grid-template-columns: auto 1fr; gap: 40px; padding-top: 25px; color: rgba(255,255,255,.38); font-size: .72rem; line-height: 1.6; }
.footer-bottom p { margin: 0; }
.disclaimer { max-width: 780px; justify-self: end; text-align: end; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }


@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .menu-button { display: inline-block; }
  .hero-grid { grid-template-columns: 1fr; gap: 35px; }
  .hero-copy { max-width: 780px; }
  .hero-visual { min-height: 590px; width: min(660px, 100%); margin-inline: auto; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid > div:nth-child(2) { border-inline-end: 0; }
  .trust-grid > div:first-child, .trust-grid > div:nth-child(3) { padding-inline-start: 0; }
  .trust-grid > div:nth-child(3), .trust-grid > div:nth-child(4) { border-top: 1px solid rgba(20,27,38,.15); }
  .split-grid { grid-template-columns: 1fr; gap: 54px; }
  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-intro { position: static; max-width: 700px; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 30px, 1180px); --radius-xl: 25px; }
  .section-pad { padding: 88px 0; }
  .header-inner { height: 76px; }
  .brand { width: 120px; }
  .mobile-menu { inset-block-start: 76px; }
  .status-pill { display: none; }
  .hero { min-height: auto; padding-top: 130px; padding-bottom: 110px; }
  .hero-grid { gap: 45px; }
  h1 { font-size: clamp(3.25rem, 16.5vw, 5.4rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; gap: 18px; }
  .hero-visual { min-height: 500px; }
  .logo-stage { width: min(310px, 76vw); border-radius: 28px; }
  .payment-card-main { right: 0; bottom: 14px; }
  .floating-chip-one { top: 45px; left: 0; }
  .floating-chip-two { top: 140px; right: 0; }
  .trust-grid { grid-template-columns: 1fr; padding: 14px 0; }
  .trust-grid > div { border-inline-end: 0; border-top: 1px solid rgba(20,27,38,.15); padding: 18px 0; }
  .trust-grid > div:first-child { border-top: 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 285px; }
  .step-icon { margin: 35px 0 24px; }
  .checkout-content { grid-template-columns: 1fr; padding: 22px; }
  .product-placeholder { min-height: 210px; }
  .product-shape { transform: scale(.82) rotate(-8deg); }
  .brand-banner-section { padding: 72px 0 82px; }
  .brand-banner-section .container { width: min(100% - 30px, 1080px); }
  .brand-banner { border-radius: 18px; }
  .brand-banner img { min-height: 220px; object-fit: cover; object-position: center; }
  .closing-card { min-height: 420px; padding: 35px 28px; flex-direction: column; align-items: flex-start; justify-content: space-between; }
  .closing-card .button { width: auto; }
  .footer-main { flex-direction: column; align-items: flex-start; }
  .footer-meta { justify-content: flex-start; }
  .footer-bottom { grid-template-columns: 1fr; gap: 16px; }
  .disclaimer { justify-self: start; text-align: start; }
}

@media (max-width: 430px) {
  .hero-visual { min-height: 455px; }
  .payment-card { width: calc(100% - 12px); padding: 18px; }
  .floating-chip { font-size: .67rem; padding: 10px 12px; }
  .section-heading h2, .split-copy h2, .faq-intro h2, .closing-card h2 { font-size: 2.65rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .animated-logo { display: none; }
  .static-logo { display: block; }
  .reveal { opacity: 1; transform: none; }
}


.founder-note { margin: 23px 0 0; color: rgba(255,255,255,.58); font-size: .8rem; font-weight: 650; }
.founder-note a { color: var(--green); font-weight: 850; transition: opacity .2s ease; }
.founder-note a:hover, .founder-note a:focus-visible { opacity: .76; }
.founder-note span, .founder-domain { white-space: nowrap; }

/* Keep the founder attribution readable on narrow screens. */
.al-rabba-link { max-width: 100%; height: auto; padding-block: 10px; line-height: 1.35; text-align: start; }
