/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --paper: #fbfcfa; /* page ground — barely-there green white */
  --surface: #ffffff; /* cards, tiles, raised slabs             */
  --surface-2: #edf3ec; /* tinted bands                           */
  --pine: #0c2c22; /* deep forest — headings and body        */
  --muted: #4a5b52; /* secondary text                         */
  --green: #12795c; /* primary — emerald                      */
  --green-deep: #0b5442; /* figures, prices, strong accents        */
  --volt: #34c98a; /* charge signal — graphics only          */
  --mint: #e3f0e7; /* soft fills                             */
  --line: rgba(12, 44, 34, 0.13);
  --line-soft: rgba(12, 44, 34, 0.07);

  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --body: 'IBM Plex Sans', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;

  --pad: clamp(20px, 5vw, 72px);
  --band: clamp(72px, 11vw, 140px);
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
html[dir='rtl'] {
  --display: 'Reem Kufi', system-ui, sans-serif;
  --body: 'IBM Plex Sans Arabic', system-ui, sans-serif;
}

/* ============================================================
   BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--pine);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}
a {
  color: inherit;
  text-decoration: none;
}
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection {
  background: var(--green);
  color: var(--paper);
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
}
html[dir='rtl'] h1,
html[dir='rtl'] h2,
html[dir='rtl'] h3 {
  letter-spacing: 0;
  line-height: 1.28;
  font-weight: 700;
}
p {
  margin: 0;
}

.wrap {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--pad);
}
.band {
  padding-block: var(--band);
  position: relative;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
html[dir='rtl'] .eyebrow {
  font-family: var(--body);
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 600;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--green);
  flex: none;
}

.h2 {
  font-size: clamp(34px, 5.4vw, 62px);
  max-width: 16ch;
}
.lede {
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 18.5px);
  max-width: 56ch;
  margin-top: 20px;
}

/* Lattice — the mashrabiya motif, used as ambient texture */
.lattice {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent 0 27px,
      var(--line-soft) 27px 28px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0 27px,
      var(--line-soft) 27px 28px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 39px,
      var(--line-soft) 39px 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 39px,
      var(--line-soft) 39px 40px
    );
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000, transparent 72%);
  mask-image: radial-gradient(circle at 50% 0%, #000, transparent 72%);
}

/* ============================================================
   SCROLL CHARGE GAUGE  (signature element)
   ============================================================ */
.gauge {
  position: fixed;
  inset-block: 0;
  inset-inline-start: 0;
  width: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 60;
  pointer-events: none;
  border-inline-end: 1px solid var(--line-soft);
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(237, 243, 236, 0.85),
    transparent
  );
}
.gauge__cell {
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  border: 1px solid var(--line);
  transition:
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s;
}
.gauge__cell.is-on {
  background: var(--green);
  border-color: var(--green-deep);
  box-shadow: 0 0 10px rgba(18, 121, 92, 0.3);
}
.gauge__pct {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
  writing-mode: vertical-rl;
  letter-spacing: 0.16em;
  margin-block-start: 14px;
}
html[dir='rtl'] .gauge__pct {
  writing-mode: horizontal-tb;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 70;
  padding-inline-start: 56px;
  transition:
    background 0.4s var(--ease),
    border-color 0.4s;
  border-block-end: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(251, 252, 250, 0.88);
  backdrop-filter: blur(16px);
  border-block-end-color: var(--line-soft);
}
.nav__in {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex: none;
}
.logo__mark {
  width: 26px;
  height: 26px;
  flex: none;
}
.logo__mark path {
  fill: var(--green);
}
.nav__links {
  display: flex;
  gap: 26px;
  margin-inline-start: auto;
}
.nav__links a {
  font-size: 14.5px;
  color: var(--muted);
  transition: color 0.25s;
}
.nav__links a:hover {
  color: var(--pine);
}
.nav__end {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.lang {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  border: 1px solid var(--line);
  padding: 8px 13px;
  border-radius: 100px;
  color: var(--muted);
  transition:
    border-color 0.25s,
    color 0.25s;
}
.lang:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 600;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s,
    background 0.25s,
    border-color 0.25s;
}
.btn--solid {
  background: var(--green);
  color: var(--paper);
  box-shadow: 0 0 0 rgba(18, 121, 92, 0);
}
.btn--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(18, 121, 92, 0.26);
}
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--pine);
}
.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}
.nav__burger {
  display: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-block: clamp(112px, 16vw, 168px) 0;
  padding-inline-start: 56px;
  overflow: hidden;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(44px, 7.4vw, 92px);
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .line span {
  display: block;
  transform: translateY(105%);
  animation: rise 0.95s var(--ease) forwards;
}
.hero h1 .line:nth-child(2) span {
  animation-delay: 0.1s;
}
.hero h1 .line:nth-child(3) span {
  animation-delay: 0.2s;
}
@keyframes rise {
  to {
    transform: translateY(0);
  }
}
.hero .accent {
  color: var(--green);
}
.hero__sub {
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
  max-width: 46ch;
  margin-top: 26px;
  opacity: 0;
  animation: fade 0.8s 0.45s var(--ease) forwards;
}
@keyframes fade {
  to {
    opacity: 1;
  }
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  opacity: 0;
  animation: fade 0.8s 0.6s var(--ease) forwards;
}

.stats {
  display: flex;
  gap: clamp(20px, 4vw, 48px);
  margin-top: 52px;
  padding-block-start: 28px;
  border-block-start: 1px solid var(--line-soft);
  opacity: 0;
  animation: fade 0.8s 0.75s var(--ease) forwards;
}
.stat__n {
  font-family: var(--mono);
  font-size: clamp(24px, 3vw, 34px);
  color: var(--green-deep);
  line-height: 1;
}
.stat__l {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 8px;
  max-width: 16ch;
  line-height: 1.4;
}

/* Phone */
.phone {
  position: relative;
  width: min(310px, 86vw);
  margin-inline: auto;
  aspect-ratio: 9/19;
  border-radius: 44px;
  padding: 11px;
  background: linear-gradient(160deg, #1d4438, #0c2c22);
  box-shadow:
    0 30px 70px rgba(12, 44, 34, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
.phone::after {
  content: '';
  position: absolute;
  inset-block-start: 11px;
  inset-inline: 50%;
  width: 96px;
  height: 22px;
  transform: translateX(-50%);
  background: #0c2c22;
  border-radius: 0 0 14px 14px;
  z-index: 4;
}
html[dir='rtl'] .phone::after {
  transform: translateX(50%);
}
.screen {
  position: relative;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
}
.screen__bar {
  padding: 26px 18px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
}
.screen__search {
  margin: 4px 14px 12px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 11.5px;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: center;
}
.screen__list {
  flex: 1;
  padding: 0 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background:
    linear-gradient(150deg, rgba(18, 121, 92, 0.055), transparent 60%),
    var(--surface);
}
.card--live {
  position: relative;
}
.card__img {
  height: 84px;
  border-radius: 9px;
  margin-block-end: 11px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #dcebe2, #eff5ee);
}
.card__img svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.card__tag {
  position: absolute;
  inset-block-start: 7px;
  inset-inline-start: 7px;
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.08em;
  background: var(--green);
  color: var(--paper);
  padding: 2px 6px;
  border-radius: 4px;
}
.card__t {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.3;
}
.card__m {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--muted);
  margin-top: 3px;
}
.card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 9px;
  padding-block-start: 9px;
  border-block-start: 1px solid var(--line-soft);
}
.card__p {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--green-deep);
}
.chip {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--green);
  border: 1px solid rgba(18, 121, 92, 0.26);
  background: rgba(18, 121, 92, 0.06);
  border-radius: 100px;
  padding: 2px 7px;
}
.fade-swap {
  animation: swap 0.6s var(--ease);
}
@keyframes swap {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* ============================================================
   TICKER — the market floor
   ============================================================ */
.ticker {
  border-block: 1px solid var(--line-soft);
  background: var(--surface-2);
  overflow: hidden;
  padding-inline-start: 56px;
}
.ticker__in {
  display: flex;
  align-items: center;
  height: 52px;
}
.ticker__label {
  flex: none;
  padding-inline: 18px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  border-inline-end: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--paper);
}
html[dir='rtl'] .ticker__label {
  font-family: var(--body);
  letter-spacing: 0;
  font-size: 12px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--volt);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  50% {
    opacity: 0.25;
  }
}
.ticker__mask {
  overflow: hidden;
  flex: 1;
}
.ticker__track {
  display: flex;
  gap: 44px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 46s linear infinite;
}
html[dir='rtl'] .ticker__track {
  animation-name: marquee-rtl;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes marquee-rtl {
  to {
    transform: translateX(50%);
  }
}
.ticker:hover .ticker__track {
  animation-play-state: paused;
}
.ticker__item {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ticker__item b {
  color: var(--pine);
  font-weight: 500;
}
.ticker__item i {
  color: var(--green);
  font-style: normal;
}

/* ============================================================
   FEATURES
   ============================================================ */
.feat__head {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.tile {
  background: var(--surface);
  padding: 38px 32px;
  transition: background 0.4s var(--ease);
  position: relative;
}
.tile:hover {
  background: var(--surface-2);
}
.tile__ico {
  width: 38px;
  height: 38px;
  margin-bottom: 26px;
}
.tile__ico * {
  stroke: var(--green);
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tile h3 {
  font-size: 20px;
  letter-spacing: -0.01em;
}
.tile p {
  color: var(--muted);
  font-size: 14.5px;
  margin-top: 12px;
}

/* ============================================================
   AUDIENCE TABS
   ============================================================ */
.aud {
  background: var(--surface-2);
  border-block: 1px solid var(--line-soft);
}
.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}
.tab {
  padding: 11px 22px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 14.5px;
  color: var(--muted);
  transition: all 0.3s var(--ease);
}
.tab:hover {
  color: var(--pine);
}
.tab.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--paper);
  font-weight: 600;
}
.panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}
.panel.is-active {
  display: grid;
  animation: swap 0.5s var(--ease);
}
.panel h3 {
  font-size: clamp(26px, 3.4vw, 40px);
}
.list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.list li {
  display: flex;
  gap: 14px;
  padding-block: 14px;
  border-block-start: 1px solid var(--line-soft);
  font-size: 15px;
  color: var(--muted);
}
.list li:first-child {
  border-block-start: 0;
}
.list b {
  color: var(--pine);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}
.list .n {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
  padding-block-start: 4px;
  flex: none;
}
.mock {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--surface);
}
.mock__h {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-block-end: 14px;
  border-block-end: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
}
html[dir='rtl'] .mock__h {
  font-family: var(--body);
  letter-spacing: 0;
  font-size: 12px;
}
.row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-block: 15px;
  border-block-end: 1px solid var(--line-soft);
}
.row:last-child {
  border: 0;
  padding-block-end: 0;
}
.row__sq {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  background: linear-gradient(140deg, #e3f0e7, #f3f8f2);
  flex: none;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--green);
}
.row__t {
  font-size: 13.5px;
  font-weight: 600;
}
.row__s {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--muted);
}
.row__e {
  margin-inline-start: auto;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--green-deep);
  text-align: end;
}
.bar {
  height: 5px;
  border-radius: 100px;
  background: var(--line);
  overflow: hidden;
  margin-top: 7px;
  width: 96px;
}
.bar i {
  display: block;
  height: 100%;
  background: var(--volt);
  width: 0;
  transition: width 1.1s var(--ease);
}

/* ============================================================
   CALCULATOR
   ============================================================ */
.calc {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}
.calc__box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3.4vw, 38px);
  background:
    linear-gradient(160deg, rgba(18, 121, 92, 0.06), transparent 55%),
    var(--surface);
}
.calc__lbl {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 14px;
}
.calc__val {
  font-family: var(--mono);
  font-size: 20px;
  color: var(--green-deep);
}
input[type='range'] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  background: var(--line);
  border-radius: 100px;
  outline-offset: 8px;
}
input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  cursor: grab;
  box-shadow: 0 0 0 5px rgba(18, 121, 92, 0.14);
}
input[type='range']::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  cursor: grab;
  box-shadow: 0 0 0 5px rgba(18, 121, 92, 0.14);
}
.cmp {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cmp__r span {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  margin-bottom: 9px;
}
.cmp__r span em {
  font-family: var(--mono);
  font-style: normal;
  font-size: 15px;
}
.cmp__bar {
  height: 10px;
  border-radius: 100px;
  background: var(--line-soft);
  overflow: hidden;
}
.cmp__bar i {
  display: block;
  height: 100%;
  border-radius: 100px;
  width: 0;
  transition: width 0.9s var(--ease);
}
.b-petrol {
  background: linear-gradient(90deg, #c3cbc4, #9da9a0);
}
.b-ev {
  background: linear-gradient(90deg, var(--volt), var(--green));
}
.saved {
  margin-top: 30px;
  padding-block-start: 24px;
  border-block-start: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.saved__n {
  font-family: var(--mono);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--green-deep);
  line-height: 1;
}
.note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 18px;
  opacity: 0.75;
}

/* ============================================================
   STEPS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
  counter-reset: s;
}
.step {
  position: relative;
  padding-block-start: 30px;
  border-block-start: 1px solid var(--line);
}
.step__n {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--green);
  letter-spacing: 0.14em;
}
.step h3 {
  font-size: 22px;
  margin-top: 16px;
}
.step p {
  color: var(--muted);
  font-size: 14.5px;
  margin-top: 11px;
}
.step::before {
  content: '';
  position: absolute;
  inset-block-start: -1px;
  inset-inline-start: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 1s var(--ease);
}
.step.is-in::before {
  width: 100%;
}

/* ============================================================
   DEALERS
   ============================================================ */
.deal {
  background: var(--paper);
  border-block: 1px solid var(--line-soft);
}
.deal__in {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}
.kpi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.kpi div {
  background: var(--surface);
  padding: 28px 24px;
}
.kpi b {
  display: block;
  font-family: var(--mono);
  font-size: 28px;
  color: var(--green-deep);
  font-weight: 400;
}
.kpi span {
  font-size: 12.5px;
  color: var(--muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 860px;
  margin-inline: auto;
  margin-top: 54px;
}
.q {
  border-block-end: 1px solid var(--line-soft);
}
.q__b {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px;
  text-align: start;
  font-size: clamp(16px, 2vw, 20px);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 0.25s;
}
html[dir='rtl'] .q__b {
  font-weight: 600;
  letter-spacing: 0;
}
.q__b:hover {
  color: var(--green);
}
.q__i {
  flex: none;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  transition: 0.35s var(--ease);
}
.q__i::before,
.q__i::after {
  content: '';
  position: absolute;
  background: var(--green);
  transition: 0.35s var(--ease);
}
.q__i::before {
  width: 11px;
  height: 1.4px;
}
.q__i::after {
  width: 1.4px;
  height: 11px;
}
.q.is-open .q__i {
  background: var(--green);
  border-color: var(--green);
  transform: rotate(135deg);
}
.q.is-open .q__i::before,
.q.is-open .q__i::after {
  background: var(--paper);
}
.q.is-open .q__i::after {
  opacity: 0;
}
.q__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.q__a p {
  color: var(--muted);
  font-size: 15px;
  padding-block-end: 26px;
  max-width: 70ch;
}

/* ============================================================
   DOWNLOAD
   ============================================================ */
.dl {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.dl__glow {
  position: absolute;
  inset-block-start: -30%;
  inset-inline-start: 50%;
  width: min(900px, 120vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(52, 201, 138, 0.2), transparent 62%);
  pointer-events: none;
}
.dl h2 {
  margin-inline: auto;
  font-size: clamp(36px, 6vw, 74px);
  max-width: 14ch;
}
.dl .lede {
  margin-inline: auto;
}
.dl__row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.store {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s,
    box-shadow 0.3s;
}
.store:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: 0 14px 34px rgba(12, 44, 34, 0.13);
}
.store svg {
  width: 26px;
  height: 26px;
  flex: none;
}
.store__t {
  text-align: start;
  line-height: 1.25;
}
.store__t small {
  display: block;
  font-size: 10.5px;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: 0.06em;
}
html[dir='rtl'] .store__t small {
  font-family: var(--body);
  letter-spacing: 0;
}
.store__t b {
  font-size: 15.5px;
  font-weight: 600;
}
.qr {
  margin-top: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.qr__box {
  width: 124px;
  height: 124px;
  padding: 9px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.qr small {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
html[dir='rtl'] .qr small {
  font-family: var(--body);
  letter-spacing: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  border-block-start: 1px solid var(--line-soft);
  padding-block: 56px 40px;
  padding-inline-start: 56px;
}
.foot__in {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 38px;
}
.foot h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
  font-weight: 400;
}
html[dir='rtl'] .foot h4 {
  font-family: var(--body);
  letter-spacing: 0;
  font-size: 13px;
}
.foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.foot a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.25s;
}
.foot a:hover {
  color: var(--green);
}
.social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s,
    color 0.25s,
    background 0.25s;
}
.social a:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--mint);
  transform: translateY(-2px);
}
.social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.foot__bot {
  margin-top: 52px;
  padding-block-start: 24px;
  border-block-start: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--muted);
}

/* ============================================================
   REVEAL
   ============================================================ */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.rv.is-in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero__grid,
  .feat__head,
  .panel.is-active,
  .calc,
  .deal__in {
    grid-template-columns: 1fr;
  }
  .hero__grid {
    gap: 56px;
  }
  .grid3,
  .steps {
    grid-template-columns: 1fr;
  }
  .foot__in {
    grid-template-columns: 1fr 1fr;
  }
  .nav__links {
    display: none;
  }
  .gauge {
    inset-block-end: auto;
    inset-block-start: 0;
    inset-inline: 0;
    width: auto;
    height: 3px;
    flex-direction: row;
    gap: 2px;
    border: 0;
    background: none;
    padding: 0;
  }
  .gauge__cell {
    transform: none;
    height: 3px;
    flex: 1;
    border: 0;
    background: var(--line-soft);
  }
  .gauge__cell.is-on {
    box-shadow: none;
  }
  .gauge__pct {
    display: none;
  }
  .nav,
  .hero,
  .ticker,
  .foot {
    padding-inline-start: 0;
  }
  .nav__burger {
    display: inline-flex;
  }
  .nav__end .btn--solid {
    display: none;
  }
}
@media (max-width: 600px) {
  .stats {
    flex-wrap: wrap;
    gap: 26px;
  }
  .tile {
    padding: 30px 24px;
  }
  .kpi {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html {
    scroll-behavior: auto;
  }
  .rv {
    opacity: 1;
    transform: none;
  }
  .hero h1 .line span {
    transform: none;
  }
  .hero__sub,
  .hero__cta,
  .stats {
    opacity: 1;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.skip {
  position: absolute;
  inset-inline-start: -9999px;
  top: 0;
  z-index: 200;
  background: var(--green);
  color: var(--paper);
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  font-size: 14px;
  font-weight: 600;
}
.skip:focus {
  inset-inline-start: 0;
}
