.prose { max-width: none; }
.article-layout .prose { max-width: none; }

.prose > p,
.prose > h2,
.prose > h3,
.prose > .answer,
.prose > .prose-list,
.prose > .pullquote,
.prose > .calc-verdict,
.prose > .calc-privacy {
  max-width: var(--measure);
}

.prose { counter-reset: sec; }
.prose > h2 {
  position: relative;
  counter-increment: sec;
  padding-block-start: 30px;
  margin-block-start: clamp(56px, 6vw, 82px);
}
.prose > h2::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 46px;
  height: 3px;
  border-radius: 2px;
  background: var(--grad-aurora);
}
.prose > h2::after {
  content: counter(sec, decimal-leading-zero);
  position: absolute;
  inset-block-start: -4px;
  inset-inline-start: 58px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--muted);
  font-family: var(--font-en);
}
.prose > h2:first-child { margin-block-start: 4px; }

.legal-page .prose > h2::after,
.simple-page .prose > h2::after { content: none; }

.answer {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 227, 196, .22);
  border-inline-start: 2px solid var(--teal);
  background: linear-gradient(115deg, rgba(20, 227, 196, .10), rgba(124, 92, 255, .05) 60%, transparent);
  padding: 24px 26px;
  border-radius: var(--radius);
}
html[dir="rtl"] .answer { border-radius: var(--radius); }
.answer::after {
  content: "";
  position: absolute;
  inset-block-start: -60%;
  inset-inline-end: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(closest-side, rgba(20, 227, 196, .16), transparent);
  pointer-events: none;
}
.answer > * { position: relative; }

.point-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
  counter-reset: pt;
}
.point-card {
  position: relative;
  counter-increment: pt;
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 22px 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--grad-surface);
  transition: border-color .3s var(--ease-out), transform .3s var(--ease-out), background .3s;
}
.point-card::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 22px;
  width: 34px;
  height: 2px;
  border-radius: 0 0 2px 2px;
  background: var(--grad-aurora);
  opacity: .55;
  transition: opacity .3s, width .3s var(--ease-out);
}
.point-card:hover {
  border-color: var(--line-2);
  background: linear-gradient(160deg, rgba(255,255,255,.085), rgba(255,255,255,.025));
}
.point-card:hover::before { opacity: 1; width: 56px; }
.point-title {
  display: block;
  color: var(--ink);
  font-weight: 700;
  font-size: var(--step-1);
  line-height: 1.3;
}
.point-text { display: block; color: var(--ink-2); font-size: var(--step--1); line-height: 1.65; }
.point-text a { color: var(--teal); }

.rail {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  counter-reset: rl;
}
.rail-step {
  position: relative;
  counter-increment: rl;
  display: grid;
  gap: 6px;
  padding: 20px 24px 20px 68px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--grad-surface);
  transition: border-color .3s, background .3s;
}
html[dir="rtl"] .rail-step { padding: 20px 68px 20px 24px; }
.rail-step::before {
  content: counter(rl);
  position: absolute;
  inset-block-start: 20px;
  inset-inline-start: 22px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(20, 227, 196, .12);
  border: 1px solid rgba(20, 227, 196, .32);
  color: var(--teal);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
}
.rail-step:hover { border-color: rgba(20, 227, 196, .3); background: rgba(20, 227, 196, .05); }

.table-wrap {
  position: relative;
  box-shadow: var(--shadow-sm);
}
.table-wrap caption {
  position: relative;
  background: linear-gradient(120deg, rgba(20, 227, 196, .10), rgba(124, 92, 255, .06));
  border-block-end: 1px solid var(--line);
  padding: 15px 20px;
  font-size: var(--step-0);
}
.table-wrap caption::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  margin-inline-end: 9px;
  vertical-align: middle;
  box-shadow: 0 0 10px rgba(20, 227, 196, .8);
}
thead th { backdrop-filter: none; }
tbody td { font-variant-numeric: tabular-nums; }
tbody tr:nth-child(even) { background: rgba(255, 255, 255, .018); }
tbody tr:hover { background: rgba(20, 227, 196, .055); }
tbody tr:last-child th, tbody tr:last-child td { border-block-end: none; }

.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.metric {
  position: relative;
  overflow: hidden;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--grad-surface);
  display: grid;
  gap: 6px;
  align-content: start;
}
.metric::after {
  content: "";
  position: absolute;
  inset-block-end: -70%;
  inset-inline-start: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(closest-side, rgba(20, 227, 196, .13), transparent);
  pointer-events: none;
}
.metric > * { position: relative; }
.metric-value {
  font-family: var(--font-en);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.metric-value em { font-style: normal; font-size: .5em; margin-inline-start: 3px; }
.metric-label { color: var(--ink); font-size: var(--step--1); font-weight: 600; }
.metric-note { color: var(--muted); font-size: 12.5px; line-height: 1.5; }

.anatomy {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: radial-gradient(120% 100% at 15% 0%, rgba(124, 92, 255, .10), transparent 60%), var(--grad-surface);
  overflow: hidden;
}
.anatomy-stage {
  position: relative;
  display: grid;
  place-items: center;
  padding-block: 14px;
  perspective: 1100px;
}
.anatomy-stage::before {
  content: "";
  position: absolute;
  inset: -14% -10%;
  background: radial-gradient(closest-side, rgba(20, 227, 196, .20), transparent);
  filter: blur(14px);
  pointer-events: none;
}
.anatomy-caption {
  grid-column: 1 / -1;
  order: 3;
  color: var(--muted);
  font-size: 12.5px;
  text-align: center;
  padding-block-start: 6px;
}

.wpass {
  position: relative;
  width: min(100%, 310px);
  border-radius: 22px;
  padding: 18px 18px 16px;
  display: grid;
  gap: 14px;
  background: linear-gradient(165deg, #10243a 0%, #0a1524 55%, #0d1a2b 100%);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(20, 227, 196, .12);
  transform: rotateX(7deg) rotateY(-8deg);
  transform-style: preserve-3d;
  transition: transform .6s var(--ease-out);
}
html[dir="rtl"] .wpass { transform: rotateX(7deg) rotateY(8deg); }
.anatomy:hover .wpass,
html[dir="rtl"] .anatomy:hover .wpass { transform: rotateX(0deg) rotateY(0deg); }

.wpass-head { display: flex; align-items: center; gap: 10px; }
.wpass-logo {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--grad-aurora);
  box-shadow: 0 6px 18px rgba(20, 227, 196, .35);
  flex-shrink: 0;
}
.wpass-brand { font-weight: 700; font-size: 15px; color: #fff; }
.wpass-kind {
  margin-inline-start: auto;
  font-size: 10.5px;
  color: var(--teal);
  background: rgba(20, 227, 196, .12);
  border: 1px solid rgba(20, 227, 196, .28);
  border-radius: var(--radius-pill);
  padding: 3px 9px;
  white-space: nowrap;
}
.wpass-hero {
  display: grid;
  gap: 9px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .07);
}
.wpass-label { font-size: 10.5px; color: var(--muted); letter-spacing: .04em; }
.wpass-stamps { display: flex; gap: 6px; }
.wpass-stamp {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .35);
}
.wpass-stamp.on {
  border: 1px solid transparent;
  background: var(--grad-aurora);
  color: var(--on-accent);
  box-shadow: 0 4px 14px rgba(20, 227, 196, .4);
}
.wpass-progress { font-size: 12px; color: var(--ink-2); font-weight: 600; }
.wpass-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 0; }
.wpass-fields dt { font-size: 10px; color: var(--muted); margin-block-end: 3px; }
.wpass-fields dd { font-size: 12px; color: var(--ink); margin: 0; font-weight: 600; line-height: 1.35; }
.wpass-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block-start: 13px;
  border-block-start: 1px dashed rgba(255, 255, 255, .14);
}
.wpass-serial { font-family: var(--font-en); font-size: 11px; color: var(--muted); letter-spacing: .06em; }

.wpass-qr {
  --qr: #05070c;
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 7px;
  background-color: #fff;
  background-image:
    linear-gradient(var(--qr) 0 0), linear-gradient(#fff 0 0), linear-gradient(var(--qr) 0 0),
    linear-gradient(var(--qr) 0 0), linear-gradient(#fff 0 0), linear-gradient(var(--qr) 0 0),
    linear-gradient(var(--qr) 0 0), linear-gradient(#fff 0 0), linear-gradient(var(--qr) 0 0),
    conic-gradient(var(--qr) 25%, #fff 0 50%, var(--qr) 0 75%, #fff 0);
  background-size:
    17px 17px, 11px 11px, 5px 5px,
    17px 17px, 11px 11px, 5px 5px,
    17px 17px, 11px 11px, 5px 5px,
    5px 5px;
  background-position:
    4px 4px, 7px 7px, 10px 10px,
    37px 4px, 40px 7px, 43px 10px,
    4px 37px, 7px 40px, 10px 43px,
    0 0;
  background-repeat:
    no-repeat, no-repeat, no-repeat,
    no-repeat, no-repeat, no-repeat,
    no-repeat, no-repeat, no-repeat,
    repeat;
}

.pin {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  color: var(--on-accent);
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(20, 227, 196, .18), 0 6px 18px rgba(0, 0, 0, .5);
  z-index: 2;
}
.pin-1 { inset-block-start: 12px;  inset-inline-start: -13px; }
.pin-2 { inset-block-start: 92px;  inset-inline-end: -13px; }
.pin-3 { inset-block-end: 92px;    inset-inline-start: -13px; }
.pin-4 { inset-block-end: 14px;    inset-inline-start: 30px; }
.pin-5 { inset-block-end: 14px;    inset-inline-end: -13px; }

.anatomy-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.anatomy-legend li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 4px 14px;
  align-items: start;
}
.anatomy-legend .legend-n {
  grid-row: 1 / 3;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(20, 227, 196, .35);
  background: rgba(20, 227, 196, .1);
  color: var(--teal);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
}
.anatomy-legend strong { color: var(--ink); font-size: var(--step-0); }
.anatomy-legend li > span:last-child { color: var(--ink-2); font-size: var(--step--1); line-height: 1.6; }

.phone-demo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: radial-gradient(110% 90% at 85% 10%, rgba(20, 227, 196, .10), transparent 60%), var(--grad-surface);
  overflow: hidden;
}
.phone-copy h3 { font-size: var(--step-2); margin-block-end: 12px; }
.phone-copy p { color: var(--ink-2); }
.phone-points { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.phone-points li { display: flex; align-items: center; gap: 10px; color: var(--ink-2); font-size: var(--step--1); }
.phone-points svg { color: var(--teal); flex-shrink: 0; }

.phone-stage { display: grid; place-items: center; }
.phone {
  position: relative;
  width: min(100%, 244px);
  aspect-ratio: 244 / 496;
  border-radius: 38px;
  padding: 9px;
  background: linear-gradient(160deg, #2a3446, #0d131f 55%, #202a3a);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, .08);
}
.phone-notch {
  position: absolute;
  inset-block-start: 17px;
  left: 50%;
  margin-inline-start: -32px;
  width: 64px;
  height: 17px;
  border-radius: var(--radius-pill);
  background: #05070c;
  z-index: 3;
}
.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 30px;
  padding: 52px 12px 16px;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 12px;
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(124, 92, 255, .35), transparent 70%),
    linear-gradient(180deg, #0b1320, #060a12 60%, #0a1220);
}
.phone-time {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: #fff;
  letter-spacing: -.02em;
}
.phone-date { font-size: 11.5px; text-align: center; color: rgba(255, 255, 255, .6); margin-block-start: -6px; }
.phone-notif {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  gap: 4px 9px;
  align-items: center;
  padding: 10px 11px;
  border-radius: 15px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  margin-block-start: 12px;
}
.notif-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--grad-aurora);
  grid-row: 1 / 3;
}
.notif-body { display: grid; gap: 2px; min-width: 0; }
.notif-body strong { font-size: 11.5px; color: #fff; }
.notif-body > span { font-size: 11px; color: rgba(255, 255, 255, .78); line-height: 1.4; }
.notif-when { font-size: 10px; color: rgba(255, 255, 255, .5); align-self: start; }
.phone-pass {
  margin-block-start: auto;
  display: grid;
  gap: 9px;
  padding: 13px;
  border-radius: 15px;
  background: linear-gradient(160deg, rgba(20, 227, 196, .2), rgba(124, 92, 255, .16));
  border: 1px solid rgba(255, 255, 255, .14);
}
.phone-pass-brand { font-size: 11.5px; font-weight: 700; color: #fff; }
.phone-pass-stamps { display: flex; gap: 5px; }
.phone-pass-stamps i {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, .4);
}
.phone-pass-stamps i.on { border: none; background: #fff; }
.phone-pass-note { font-size: 10.5px; color: rgba(255, 255, 255, .75); }

.stampcard {
  margin: 0;
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid rgba(20, 227, 196, .22);
  border-radius: var(--radius-lg);
  background: radial-gradient(100% 120% at 0% 0%, rgba(20, 227, 196, .12), transparent 55%), var(--grad-surface);
  display: grid;
  gap: 18px;
  overflow: hidden;
}
.stampcard-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.stampcard-title { font-weight: 700; font-size: var(--step-1); }
.stampcard-count {
  margin-inline-start: auto;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  background: rgba(20, 227, 196, .1);
  border: 1px solid rgba(20, 227, 196, .3);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  white-space: nowrap;
}
.stamp-row { display: flex; flex-wrap: wrap; gap: clamp(8px, 1.4vw, 14px); }
.stamp {
  width: clamp(46px, 6.6vw, 62px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px dashed var(--line-2);
  color: var(--muted);
  font-family: var(--font-en);
  font-weight: 700;
  transition: transform .4s var(--ease-spring);
}
.stamp-n { font-size: 15px; }
.stamp.on {
  border: 2px solid transparent;
  background: var(--grad-aurora);
  color: var(--on-accent);
  box-shadow: 0 8px 24px rgba(20, 227, 196, .3);
}
.stamp-reward {
  border-color: rgba(124, 92, 255, .55);
  color: var(--violet);
  background: rgba(124, 92, 255, .1);
}
.stampcard:hover .stamp.on { transform: translateY(-3px); }
.stampcard-note { color: var(--ink-2); font-size: var(--step--1); }

.versus {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(12px, 2vw, 22px);
  align-items: stretch;
}
.vs-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--grad-surface);
  display: grid;
  gap: 12px;
  align-content: start;
}
.vs-a { border-color: rgba(255, 255, 255, .1); }
.vs-b {
  border-color: rgba(20, 227, 196, .3);
  background: linear-gradient(160deg, rgba(20, 227, 196, .1), rgba(124, 92, 255, .05));
  box-shadow: var(--glow-teal);
}
.vs-tag {
  justify-self: start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 4px 11px;
}
html[dir="rtl"] .vs-tag { letter-spacing: 0; }
.vs-b .vs-tag { color: var(--teal); border-color: rgba(20, 227, 196, .35); background: rgba(20, 227, 196, .1); }
.vs-card h3 { font-size: var(--step-1); }
.vs-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.vs-points li {
  position: relative;
  padding-inline-start: 22px;
  color: var(--ink-2);
  font-size: var(--step--1);
  line-height: 1.55;
}
.vs-points li::before {
  content: "";
  position: absolute;
  inset-inline-start: 2px;
  inset-block-start: .62em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--line-2);
}
.vs-b .vs-points li::before { background: var(--teal); box-shadow: 0 0 10px rgba(20, 227, 196, .7); }
.vs-foot { color: var(--muted); font-size: 12.5px; }
.vs-split {
  align-self: center;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  color: var(--muted);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
}

.check-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.check-col {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--grad-surface);
}
.check-col h3 { font-size: var(--step-1); margin-block-end: 14px; }
.check-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.check-col li {
  position: relative;
  padding-inline-start: 30px;
  color: var(--ink-2);
  font-size: var(--step--1);
  line-height: 1.6;
}
.check-col li::before {
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: .05em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
}
.check-do { border-color: rgba(20, 227, 196, .28); }
.check-do h3 { color: var(--teal); }
.check-do li::before { content: "✓"; background: rgba(20, 227, 196, .14); color: var(--teal); }
.check-dont { border-color: rgba(255, 255, 255, .12); }
.check-dont h3 { color: var(--ink-2); }
.check-dont li::before { content: "✕"; background: rgba(255, 255, 255, .07); color: var(--muted); }

.pullquote {
  margin: 0;
  position: relative;
  padding: 26px 30px;
  border-inline-start: 3px solid transparent;
  border-image: var(--grad-aurora) 1;
  border-image-slice: 1;
}
.pullquote p {
  font-size: var(--step-2);
  line-height: 1.45;
  color: var(--ink);
  font-weight: 600;
  text-wrap: balance;
}
.pullquote cite { display: block; margin-block-start: 12px; font-style: normal; font-size: var(--step--1); color: var(--muted); }

.flow {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}
.flow-step {
  position: relative;
  display: grid;
  gap: 7px;
  align-content: start;
  padding: 22px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--grad-surface);
}
.flow-node {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--grad-aurora);
  color: var(--on-accent);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 22px rgba(20, 227, 196, .28);
}
.flow-step strong { color: var(--ink); font-size: var(--step-0); }
.flow-step > span:last-child { color: var(--ink-2); font-size: var(--step--1); line-height: 1.6; }

.country-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-block-start: 26px; }
.country-chip {
  display: grid;
  gap: 2px;
  padding: 11px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.country-chip dt { font-size: 10.5px; color: var(--muted); letter-spacing: .04em; }
.country-chip dd {
  margin: 0;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
}
html[dir="rtl"] .country-chip dd { font-family: var(--font-ar); }

.market-band {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: clamp(28px, 3.4vw, 46px);
  background: linear-gradient(180deg, rgba(20, 227, 196, .045), transparent);
}
.market-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-block-end: 20px; }
.market-head h2 { font-size: var(--step-2); }
.market-head span { color: var(--muted); font-size: var(--step--1); }

.city-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-block-start: 26px;
}
.city-strip .city-label { color: var(--muted); font-size: var(--step--1); margin-inline-end: 4px; }
.city-pill {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 13px;
  color: var(--ink-2);
  transition: border-color .25s, color .25s, transform .25s var(--ease-out);
}
.city-pill:hover { border-color: rgba(20, 227, 196, .4); color: var(--teal); transform: translateY(-2px); }
.city-strip .city-note { color: var(--muted); font-size: 12.5px; width: 100%; }

.type-card { padding-block-start: 20px; }
.tv {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 44px;
  margin-block-end: 14px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(7, 10, 18, .55);
  border: 1px solid var(--line);
  width: fit-content;
  font-family: var(--font-en);
}
.tv i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px dashed var(--line-2);
}
.tv i.on { border: none; background: var(--grad-aurora); box-shadow: 0 0 10px rgba(20, 227, 196, .5); }
.tv b { font-size: 14px; font-weight: 700; color: var(--teal); }

.tv-ratio u {
  width: 22px;
  height: 1px;
  background: var(--line-2);
  position: relative;
  text-decoration: none;
}
.tv-ratio u::after {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  inset-block-start: -3px;
  width: 7px;
  height: 7px;
  border-block-start: 1px solid var(--line-2);
  border-inline-end: 1px solid var(--line-2);
  transform: rotate(45deg);
}
html[dir="rtl"] .tv-ratio u::after { transform: rotate(-135deg); inset-inline-end: auto; inset-inline-start: 0; }
.tv-ratio b:last-child { color: var(--violet); }

.tv-visit b { margin-inline-start: 4px; }

.tv-ring {
  width: 44px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(20, 227, 196, .3);
  border-block-start-color: var(--teal);
  border-inline-end-color: var(--teal);
}
.tv-ring b { font-size: 12.5px; }

.tv-plus { width: 44px; padding: 0; justify-content: center; }
.tv-plus b { font-size: 22px; line-height: 1; color: var(--violet); }

.head-panel {
  position: relative;
  overflow: hidden;
  align-self: center;
  padding: 26px 26px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 227, 196, .24);
  background: radial-gradient(120% 100% at 100% 0%, rgba(20, 227, 196, .14), transparent 60%), var(--grad-surface);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 14px;
}
.head-panel-badge {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--teal);
  background: rgba(20, 227, 196, .1);
  border: 1px solid rgba(20, 227, 196, .3);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
}
.head-panel p { color: var(--ink-2); font-size: var(--step--1); line-height: 1.6; }
.head-panel-chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.head-panel-chips li {
  font-size: 12.5px;
  color: var(--ink-2);
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
}

.faq-list { gap: 12px; }
.qa { transition: border-color .3s, background .3s, transform .3s var(--ease-out); }
.qa:hover { border-color: var(--line-2); }
.qa summary { font-size: var(--step-0); }
.qa[open] { box-shadow: var(--glow-teal); }

.callout { padding-block: 26px; }
.callout h3 { font-size: var(--step-2); }

@media (max-width: 900px) {
  .anatomy, .phone-demo { grid-template-columns: minmax(0, 1fr); }
  .anatomy-caption { order: 2; }
  .anatomy-legend { order: 3; }

  .wpass, html[dir="rtl"] .wpass { transform: none; }
  .phone-stage { order: -1; }
  .versus { grid-template-columns: minmax(0, 1fr); }
  .vs-split { justify-self: center; width: 40px; height: 40px; }
}

@media (max-width: 560px) {
  .prose > h2::after { content: none; }
  .rail-step { padding: 18px 18px 18px 60px; }
  html[dir="rtl"] .rail-step { padding: 18px 60px 18px 18px; }
  .rail-step::before { inset-inline-start: 16px; }
  .anatomy, .phone-demo { padding: 20px 16px; }
  .pin { width: 22px; height: 22px; font-size: 11px; }
}

.promo-panel { padding-block: clamp(18px, 2.4vw, 30px) 0; }

.pp-card {
  position: relative;

  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--grad-surface), var(--bg-2);
  padding: clamp(20px, 2.6vw, 34px);
  box-shadow: var(--shadow-md);
}
.pp-glow {
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 150%;
  background:
    radial-gradient(closest-side, rgba(20, 227, 196, .16), transparent 70%),
    radial-gradient(closest-side, rgba(124, 92, 255, .14), transparent 72%);
  background-position: 18% 0%, 82% 20%;
  background-repeat: no-repeat;
  background-size: 52% 100%, 48% 90%;
  pointer-events: none;
}

.pp-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(16px, 2.6vw, 40px);
  align-items: center;
}
.pp-main { min-width: 0; }

.pp-eyebrow {
  display: inline-block;
  font-size: var(--step--1);
  color: var(--teal);
  border: 1px solid rgba(20, 227, 196, .3);
  background: rgba(20, 227, 196, .07);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  margin-block-end: 12px;
}
.pp-title {
  display: block;
  font-size: var(--step-2);
  line-height: 1.25;
  color: var(--ink);
  margin-block-end: 10px;
  max-width: 24ch;
}
.pp-lead {
  color: var(--ink-2);
  font-size: var(--step-0);
  line-height: 1.7;
  max-width: 62ch;
  margin-block-end: 18px;
}

.pp-lead-more { color: var(--muted); }

.pp-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.pp-secondary {
  color: var(--ink-2);
  font-size: var(--step--1);
  border-block-end: 1px solid var(--line-2);
  padding-block-end: 2px;
}
.pp-secondary:hover { color: var(--teal); border-color: var(--teal); }

.deck-promo { min-height: 250px; }
.deck-promo .deck-stage { width: 240px; height: 250px; }
.deck-promo .deck-slot { width: 128px; }

.pp-steps {
  position: relative;
  list-style: none;
  margin: clamp(18px, 2.4vw, 28px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}
.pp-step {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 14px;
}
.pp-step-n {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--on-accent);
  font-weight: 700;
  font-size: var(--step--1);
}
.pp-step-t { font-weight: 600; color: var(--ink); font-size: var(--step-0); }
.pp-step-d { color: var(--muted); font-size: var(--step--1); line-height: 1.6; }

.pp-feats {
  position: relative;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px 22px;
}
.pp-feats li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: baseline;
  padding-block: 8px;
}
.pp-ico { grid-row: 1 / 3; font-size: 17px; line-height: 1.4; }
.pp-feat-t { font-weight: 600; color: var(--ink); font-size: var(--step--1); }
.pp-feat-d { color: var(--muted); font-size: var(--step--1); line-height: 1.55; }

.pp-trust {
  position: relative;
  margin: 16px 0 0;
  padding-block-start: 14px;
  border-block-start: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--step--1);
}

.post-head-inner { position: relative; max-width: 78ch; }

.eyebrow-link { text-decoration: none; transition: color .2s var(--ease-out), border-color .2s var(--ease-out); }
.eyebrow-link:hover { color: var(--ink); border-color: var(--teal); }

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block-start: 20px;
}
.pm-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  padding: 6px 13px;
  color: var(--ink-2);
  font-size: var(--step--1);
  white-space: nowrap;
}
.pm-author { color: var(--ink); border-color: var(--line-2); }
.pm-label { color: var(--muted); }
.pm-chip time { color: inherit; }

.post-count { color: var(--muted); font-size: var(--step--1); margin-block-start: 14px; }

.prose-wide > * { max-width: 68ch; }

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-block: 20px 8px;
}

.post-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--grad-surface), var(--bg-2);
  padding: 20px;
  text-decoration: none;
  transition: border-color .25s var(--ease-out), transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.post-card:hover {
  border-color: rgba(20, 227, 196, .38);
  box-shadow: var(--shadow-md);
}
.pc-top { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.pc-kw {
  color: var(--teal);
  font-size: var(--step--1);
  letter-spacing: .01em;
}
.pc-cat {
  color: var(--muted);
  font-size: var(--step--1);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 2px 9px;
}
.pc-title {
  color: var(--ink);
  font-size: var(--step-1);
  font-weight: 600;
  line-height: 1.35;
}
.pc-desc { color: var(--ink-2); font-size: var(--step--1); line-height: 1.65; flex: 1; }
.pc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-block-start: 12px;
  border-block-start: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--step--1);
}
.pc-more { color: var(--teal); }

.blog-section { margin-block: clamp(30px, 4vw, 52px); }
.blog-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.blog-section-head h2 { margin: 0; font-size: var(--step-2); }

.blog-section-head h2::before,
.blog-section-head h2::after { content: none; }
.blog-section-more { color: var(--teal); font-size: var(--step--1); white-space: nowrap; }
.blog-section-lead { color: var(--ink-2); font-size: var(--step--1); line-height: 1.7; max-width: 68ch; margin-block-start: 8px; }

@media (max-width: 980px) {
  .pp-hero { grid-template-columns: minmax(0, 1fr); }
  .pp-hero .deck { display: none; }
}

@media (max-width: 640px) {

  .pp-lead-more { display: none; }
  .pp-feats { display: none; }
  .pp-card { padding: 18px 16px; }
  .pp-steps { gap: 8px; }
  .pp-step { padding: 12px; }
  .post-grid { grid-template-columns: minmax(0, 1fr); }
  .post-card { padding: 16px; }
}
