/* stylesheet */

/* --- CUSTOM PROPERTIES --- */
:root {
  --clr-bg:         hsl(342 22% 8%);
  --clr-surface:    hsl(342 20% 12%);
  --clr-surface-2:  hsl(342 19% 16%);
  --clr-border:     hsl(342 16% 20%);
  --clr-teal:       hsl(8 57% 50%);
  --clr-teal-dim:   hsl(8 57% 38%);
  --clr-gold:       hsl(158 67% 58%);
  --clr-gold-dim:   hsl(158 67% 44%);
  --clr-text:       #e8eaf0;
  --clr-text-muted: #8b91a8;
  --clr-green:      #2ecc71;
  --clr-red:        #e74c3c;
  --clr-yellow:     #f5b942;

  --ff-body: -apple-system, 'Segoe UI', Roboto, Ubuntu, sans-serif;
  --ff-mono: "SF Mono", "Fira Code", Consolas, monospace;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.375rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  3rem;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --shadow-card: 0 2px 16px rgba(0,0,0,0.4);
  --transition: 200ms ease;

  --max-w: 1100px;
  --header-h: 64px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 100%; -webkit-text-size-adjust: 100%; }
body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  min-height: 100vh;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-teal); text-decoration: none; }
a:hover { color: var(--clr-gold); }
a:focus-visible { outline: 2px solid var(--clr-teal); outline-offset: 3px; border-radius: 3px; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
table { border-collapse: collapse; width: 100%; }

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- LAYOUT --- */
.zo17j {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-4);
}
@media (min-width: 640px) {
  .zo17j { padding: 0 var(--space-6); }
}

/* --- HEADER --- */
.jt76u {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,15,26,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--clr-border);
  height: var(--header-h);
}
.uu37 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-4);
}
.fz55z {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--clr-text);
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}
.fz55z:hover { color: var(--clr-text); }
.zs37z { font-size: 1.4em; line-height: 1; }
.mj52n { color: var(--clr-teal); }

.fa35u { display: none; }
.fa35u ul {
  display: flex;
  gap: var(--space-6);
  list-style: none;
}
.fa35u a {
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  font-weight: 500;
  transition: color var(--transition);
}
.fa35u a:hover { color: var(--clr-teal); }

@media (min-width: 900px) {
  .fa35u { display: block; }
  .qf18 { display: none; }
}

/* Burger button */
.qf18 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  flex-shrink: 0;
}
.qf18:focus-visible { outline: 2px solid var(--clr-teal); }
.oi35o,
.oi35o::before,
.oi35o::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  position: relative;
}
.oi35o::before,
.oi35o::after {
  content: '';
  position: absolute;
  left: 0;
}
.oi35o::before { top: -5px; }
.oi35o::after  { top: 5px; }

.qf18[aria-expanded="true"] .oi35o { background: transparent; }
.qf18[aria-expanded="true"] .oi35o::before { transform: rotate(45deg); top: 0; }
.qf18[aria-expanded="true"] .oi35o::after  { transform: rotate(-45deg); top: 0; }

/* Mobile nav */
.wh76 {
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--space-4) var(--space-4) var(--space-6);
}
.wh76[hidden] { display: none; }
.wh76 ul { display: flex; flex-direction: column; gap: var(--space-2); }
.wh76 a {
  display: block;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-size: var(--fs-md);
  transition: background var(--transition), color var(--transition);
}
.wh76 a:hover { background: var(--clr-surface-2); color: var(--clr-teal); }

/* --- HERO --- */
.da76m {
  padding: var(--space-12) 0 0;
  position: relative;
  overflow: hidden;
}
.da76m::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 20%, rgba(0,212,170,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.av50 {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  padding-bottom: var(--space-12);
}
.hu19 {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-teal);
  background: rgba(0,212,170,0.1);
  border: 1px solid rgba(0,212,170,0.2);
  padding: var(--space-1) var(--space-3);
  border-radius: 100px;
  margin-bottom: var(--space-4);
}
.hq54 h1 {
  font-size: clamp(var(--fs-2xl), 5vw, var(--fs-3xl));
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
}
.ae46 { color: var(--clr-teal); }
.qy55 {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  max-width: 52ch;
  margin-bottom: var(--space-4);
}
.ft88q {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  background: rgba(245,185,66,0.08);
  border: 1px solid rgba(245,185,66,0.2);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-6);
  display: inline-block;
}
.lg67n { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.ek24t {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,212,170,0.1);
  flex-shrink: 0;
}
.ek24t img { width: 100%; height: auto; }

/* Speed stripe signature element */
.pq86y {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--clr-teal), var(--clr-gold), transparent);
  opacity: 0.7;
  animation: stripe-pulse 2.5s ease-out forwards;
}
@keyframes stripe-pulse {
  0%   { opacity: 0; transform: scaleX(0.3); }
  40%  { opacity: 0.9; transform: scaleX(1); }
  100% { opacity: 0.5; transform: scaleX(1); }
}

@media (min-width: 768px) {
  .av50 {
    flex-direction: row;
    align-items: center;
  }
  .hq54 { flex: 1 1 50%; }
  .ek24t { flex: 1 1 45%; }
}

/* --- BUTTONS --- */
.ro39l {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.7em 1.5em;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.ro39l:focus-visible { outline: 2px solid var(--clr-teal); outline-offset: 3px; }

.wl15 {
  background: var(--clr-teal);
  color: #0d0f1a;
  border: 2px solid var(--clr-teal);
}
.wl15:hover {
  background: var(--clr-teal-dim);
  border-color: var(--clr-teal-dim);
  color: #0d0f1a;
  box-shadow: 0 0 16px rgba(0,212,170,0.3);
}
.jm42 {
  background: transparent;
  color: var(--clr-text);
  border: 2px solid var(--clr-border);
}
.jm42:hover {
  border-color: var(--clr-teal);
  color: var(--clr-teal);
}
.nq35 { font-size: var(--fs-xs); padding: 0.5em 1.1em; }
.qn89v {
  background: transparent;
  color: var(--clr-text-muted);
  border: 2px solid transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.qn89v:hover { color: var(--clr-teal); text-decoration: none; }

/* Loyalty CTA */
.af71 { margin-top: var(--space-6); }

/* --- SECTIONS --- */
.hx84 { padding: var(--space-12) 0; }
.iu81 { background: var(--clr-surface); }
.vb23 {
  font-size: var(--fs-xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-8);
  position: relative;
  padding-left: var(--space-4);
}
.vb23::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(to bottom, var(--clr-teal), var(--clr-gold));
}

/* --- CARDS --- */
.wi25 {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--space-6);
}
.iu81 .wi25 {
  background: var(--clr-surface-2);
}
.wi25:last-child { margin-bottom: 0; }

.wi25 h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--clr-text);
}
.wi25 h4 {
  font-size: var(--fs-md);
  font-weight: 700;
  margin: var(--space-6) 0 var(--space-3);
  color: var(--clr-gold);
}
.wi25 p { margin-bottom: var(--space-4); }
.wi25 p:last-child { margin-bottom: 0; }

/* --- SPLIT GRID --- */
.lu49n {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 640px) {
  .lu49n { grid-template-columns: 1fr 1fr; }
}

.os31 { border-color: rgba(46,204,113,0.25); }
.xj11h { border-color: rgba(231,76,60,0.2); }

/* --- MEDIA CARDS --- */
.cu19 {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
}
.cu19 h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--space-4);
}
.cu19 h4 {
  font-size: var(--fs-md);
  font-weight: 700;
  margin: var(--space-6) 0 var(--space-3);
  color: var(--clr-gold);
}
.cu19 p { margin-bottom: var(--space-4); }
.cu19 p:last-child { margin-bottom: 0; }
.zd18p {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  flex-shrink: 0;
}
.zd18p img { width: 100%; height: auto; }

@media (min-width: 768px) {
  .cu19 { flex-direction: row; align-items: flex-start; }
  .ff92y { flex-direction: row-reverse; }
  .mg20 { flex: 1; }
  .zd18p { width: 340px; }
}

/* --- TABLE OF CONTENTS --- */
.uv49l { padding: var(--space-8) 0; }
.wi56z { border-color: rgba(0,212,170,0.2); }
.ee43 {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--clr-teal);
}
.mp58 {
  list-style: decimal inside;
  columns: 1;
  column-gap: var(--space-8);
  counter-reset: toc;
}
.mp58 li {
  counter-increment: toc;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: var(--fs-sm);
}
.mp58 li:last-child { border-bottom: none; }
.mp58 a { color: var(--clr-text-muted); }
.mp58 a:hover { color: var(--clr-teal); }

@media (min-width: 640px) {
  .mp58 { columns: 2; }
}

/* --- TABLES --- */
.qm86 { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-sm); border: 1px solid var(--clr-border); margin: var(--space-6) 0; }
.sh63 { min-width: 480px; }
.sh63 th,
.sh63 td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  font-size: var(--fs-sm);
  border-bottom: 1px solid var(--clr-border);
  vertical-align: middle;
}
.sh63 thead th {
  background: var(--clr-surface-2);
  font-weight: 700;
  color: var(--clr-text-muted);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sh63 tbody tr:last-child td,
.sh63 tbody tr:last-child th { border-bottom: none; }
.sh63 tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.sh63 th[scope="row"] {
  font-weight: 700;
  color: var(--clr-text-muted);
  white-space: nowrap;
  width: 1%;
}
.he71 th[scope="row"] { min-width: 140px; }
.ez58 {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-top: calc(-1 * var(--space-4));
  padding: 0 var(--space-1);
}

/* --- BADGES --- */
.pl75 {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  vertical-align: middle;
}
.pm89o  { background: rgba(46,204,113,0.15); color: var(--clr-green); border: 1px solid rgba(46,204,113,0.3); }
.ij10a { background: rgba(245,185,66,0.15); color: var(--clr-yellow); border: 1px solid rgba(245,185,66,0.3); }

/* --- LISTS --- */
.jq55, .vb44 {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.jq55 li, .vb44 li {
  padding-left: 1.6em;
  position: relative;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}
.jq55 li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-teal);
  font-weight: 700;
}
.vb44 li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--clr-red);
  font-weight: 700;
}
.wi25 ul:not(.jq55):not(.vb44) {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin: var(--space-3) 0 var(--space-4);
}
.wi25 ul:not(.jq55):not(.vb44) li,
.cu19 ul li {
  padding-left: 1.4em;
  position: relative;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}
.wi25 ul:not(.jq55):not(.vb44) li::before,
.cu19 ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--clr-gold);
}
.cu19 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin: var(--space-3) 0 var(--space-4);
}

/* Step list */
.er37 {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.er37 li {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.sc83v {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-teal), var(--clr-teal-dim));
  color: #0d0f1a;
  font-weight: 800;
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.er37 strong { display: block; margin-bottom: var(--space-1); color: var(--clr-text); }
.er37 p { font-size: var(--fs-sm); color: var(--clr-text-muted); margin: 0; }

/* --- EDITORIAL NOTES --- */
.ag78 {
  margin: var(--space-6) 0 var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  border-left: 3px solid var(--clr-teal);
  background: rgba(0,212,170,0.06);
  color: var(--clr-text-muted);
}
.ba82h {
  border-left-color: var(--clr-gold);
  background: rgba(245,185,66,0.06);
}
.ag78 strong { color: var(--clr-text); }

/* --- FAST FACTS --- */
.jy96 { background: var(--clr-surface); }

/* --- TOC SECTION --- */
.uv49l { background: var(--clr-surface-2); }

/* --- FAQ ACCORDION --- */
.km40 { display: flex; flex-direction: column; gap: var(--space-3); }
.et68 { padding: 0; overflow: hidden; }
.ym29d {
  width: 100%;
  text-align: left;
  padding: var(--space-4) var(--space-6);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  transition: color var(--transition);
}
.ym29d:hover, .ym29d[aria-expanded="true"] { color: var(--clr-teal); }
.sv64k {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.sv64k::before, .sv64k::after {
  content: '';
  position: absolute;
  background: var(--clr-text-muted);
  border-radius: 2px;
  transition: opacity var(--transition), transform var(--transition);
}
.sv64k::before { width: 10px; height: 2px; }
.sv64k::after  { width: 2px; height: 10px; }

.ym29d[aria-expanded="true"] .sv64k { border-color: var(--clr-teal); transform: rotate(45deg); }
.ym29d[aria-expanded="true"] .sv64k::before,
.ym29d[aria-expanded="true"] .sv64k::after { background: var(--clr-teal); }

.if70 { padding: 0 var(--space-6) var(--space-6); }
.if70[hidden] { display: none; }
.if70 p { font-size: var(--fs-sm); color: var(--clr-text-muted); }

/* --- VERDICT --- */
.bv41 { background: var(--clr-bg); }
.yk27 { border-color: rgba(0,212,170,0.3); }
.rn13a {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}
.eg84 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--clr-teal), var(--clr-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
}
.ke10 { color: var(--clr-text-muted); font-size: var(--fs-sm); }
.yk27 p { margin-bottom: var(--space-4); font-size: var(--fs-md); }
.yk27 p:last-child { margin-bottom: 0; }
.yk27 em { color: var(--clr-text-muted); font-size: var(--fs-sm); }

/* --- STICKY MOBILE CTA --- */
.zm56b {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(13,15,26,0.97);
  border-top: 1px solid var(--clr-border);
  padding: var(--space-3) var(--space-4);
  display: flex;
  gap: var(--space-3);
  justify-content: center;
}
@media (min-width: 900px) {
  .zm56b { display: none; }
}

/* --- FOOTER --- */
.wn26 {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: var(--space-12) 0 var(--space-16);
}
@media (min-width: 900px) {
  .wn26 { padding-bottom: var(--space-8); }
}
.uq85g {
  background: rgba(245,185,66,0.06);
  border: 1px solid rgba(245,185,66,0.2);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-6);
  margin-bottom: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
@media (min-width: 640px) {
  .uq85g { flex-direction: row; align-items: center; justify-content: space-between; }
}
.yy78u { font-size: var(--fs-sm); color: var(--clr-text-muted); }
.yy78u strong { color: var(--clr-gold); }
.uh62p { display: flex; gap: var(--space-3); align-items: center; flex-shrink: 0; }
.nd40v {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-gold);
  color: #0d0f1a;
  font-weight: 900;
  font-size: var(--fs-xs);
}
.ta36p {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-text-muted);
  border: 1px solid var(--clr-border);
  padding: var(--space-1) var(--space-3);
  border-radius: 100px;
}
.ta36p:hover { border-color: var(--clr-teal); color: var(--clr-teal); }
.fn88f {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-8);
  opacity: 0.7;
}
.rf95a {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
@media (min-width: 640px) {
  .rf95a { flex-direction: row; justify-content: space-between; align-items: center; }
}
.qx54 { font-size: var(--fs-xs); color: var(--clr-text-muted); }
.rf95a nav { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.rf95a nav a { font-size: var(--fs-xs); color: var(--clr-text-muted); }
.rf95a nav a:hover { color: var(--clr-teal); }

/* --- SKIP LINK (a11y) --- */
.in52 {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--clr-teal);
  color: #0d0f1a;
  font-weight: 700;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  z-index: 999;
}
.in52:focus { top: var(--space-3); }

/* =============================================
   SUBPAGE STYLES
   ============================================= */

/* Breadcrumb */
.ow15 { margin-bottom: var(--space-6); }
.ow15 ol {
  display: flex;
  gap: var(--space-2);
  list-style: none;
  flex-wrap: wrap;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}
.ow15 li + li::before { content: '›'; margin-right: var(--space-2); color: var(--clr-border); }
.ow15 a { color: var(--clr-text-muted); }
.ow15 a:hover { color: var(--clr-teal); }
.ow15 [aria-current="page"] { color: var(--clr-text); }

/* Page headings */
.vy66r {
  font-size: clamp(var(--fs-xl), 4vw, var(--fs-2xl));
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: var(--space-6);
}
.ry81z {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-top: calc(-1 * var(--space-4));
  margin-bottom: var(--space-6);
}

/* Card headings on subpages */
.wi25 h2 {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--clr-text);
}
.wi25 ul:not(.jq55):not(.vb44) li {
  margin-bottom: var(--space-1);
}

/* Contact form */
.ce55 { display: flex; flex-direction: column; gap: var(--space-5); }
.ec65k { display: flex; flex-direction: column; gap: var(--space-2); }
.ec65k label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text);
}
.ec65k label span { color: var(--clr-gold); }
.ec65k input,
.ec65k select,
.ec65k textarea {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
  color: var(--clr-text);
  font: inherit;
  font-size: var(--fs-sm);
  transition: border-color var(--transition);
  width: 100%;
}
.ec65k input::placeholder,
.ec65k textarea::placeholder { color: var(--clr-text-muted); opacity: 0.6; }
.ec65k input:focus,
.ec65k select:focus,
.ec65k textarea:focus {
  outline: none;
  border-color: var(--clr-teal);
  box-shadow: 0 0 0 3px rgba(0,212,170,0.12);
}
.ec65k select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b91a8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.ec65k textarea { resize: vertical; min-height: 140px; }
.cj81 { font-size: var(--fs-xs); color: var(--clr-text-muted); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.gg72c { padding: 48px 0; border-top: 1px solid var(--clr-border); }
.kq32p { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.kq32p h2 { font-size: clamp(1.35rem, 2.7vw, 1.75rem); margin-bottom: 16px; color: var(--clr-teal); }
.kq32p p { margin-bottom: 13px; }
.kq32p ul { margin: 0 0 14px 22px; }
.kq32p li { margin-bottom: 8px; }

/* inner-page layout variants */
.iy28x { max-width: 900px; }
.ai70v { margin-bottom: 26px; }
.ai70v h2 { margin-bottom: 10px; }
.qx56 { max-width: 980px; display: grid; grid-template-columns: 1fr 220px; gap: 30px; align-items: start; }
.qx56 .ow15, .qx56 .vy66r { grid-column: 1 / -1; }
.vi18 { grid-column: 2; grid-row: 3 / span 99; border-left: 2px solid var(--clr-border); padding-left: 16px; }
.gc57 { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--clr-text-dim); }
.fp92 { font-weight: 700; }
.vl19i { max-width: 700px; }
.vl19i .wi25 { border-left: 3px solid var(--clr-teal); }
@media (max-width: 820px) {
  .qx56 { grid-template-columns: 1fr; }
  .vi18 { grid-column: 1; grid-row: auto; border-left: 0; padding-left: 0; }
}

.vp58u { list-style: none; margin: 0 !important; padding: 0; display: grid; gap: 8px; }
.cj25d { padding-left: 0; font-size: .95rem; }
.cj25d time { font-weight: 700; color: var(--clr-teal); margin-right: 6px; }

/* conversion hero */
.ys33 { padding: 30px 0 6px; }
.bj45q { display: grid; grid-template-columns: 1.05fr 1fr; gap: 30px; align-items: center; }
.ys33.cv-solo .bj45q { display: block; }
.ff75 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); line-height: 1.2; margin-bottom: 14px; }
.on38g { list-style: none; margin: 0 0 18px !important; padding: 0; display: grid; gap: 9px; }
.on38g li { position: relative; padding-left: 30px; font-size: 1.02rem; font-weight: 600; }
.on38g li::before { content: '✓'; position: absolute; left: 0; top: 1px; width: 21px; height: 21px; border-radius: 50%; background: var(--clr-teal); color: var(--clr-bg); font-size: .78rem; font-weight: 900; display: grid; place-items: center; }
.uo41i { font-size: 1.04rem; padding: 13px 28px; }
.mq65 { font-size: .82rem; color: var(--clr-text-dim); margin-top: 10px; }
.jw73v { border-radius: 14px; overflow: hidden; border: 1px solid var(--clr-border); margin: 0; }
.jw73v img { width: 100%; height: auto; display: block; }

/* author */
.vh45f { display: flex; align-items: center; gap: 10px; margin: 14px 0 18px; font-size: .92rem; }
.kw75 { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; flex: 0 0 34px; }
.cn50m { color: var(--clr-text-dim); }
.yl82f { padding: 36px 0; border-top: 1px solid var(--clr-border); }
.zy64 { display: flex; gap: 20px; align-items: flex-start; }
.qe39y { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; flex: 0 0 96px; border: 2px solid var(--clr-border); }
.wk22 h2 { font-size: 1.2rem; margin-bottom: 8px; }
.gm31d { font-size: .95rem; color: var(--clr-text-dim); margin-bottom: 10px; }
.wk22 p { margin-bottom: 10px; }

@media (max-width: 860px) {
  .bj45q { grid-template-columns: 1fr; }
  .zy64 { flex-direction: column; }
}

/* открытое верхнее меню на узких экранах — запасной путь, если панель #mobile-menu недоступна */
@media (max-width: 1000px) {
  .fa35u.hh60g { display: block; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--clr-surface); border-bottom: 1px solid var(--clr-border); z-index: 60; }
  .fa35u.hh60g ul { flex-direction: column; gap: 0; }
  .fa35u.hh60g a { display: block; padding: 12px 20px; }
}

h1, h2, h3 { font-family: 'Palatino Linotype', Palatino, Georgia, serif; }

/* extras.pw69 — appended to the theme stylesheet at build time and renamed with
   the rest of the classes. Only theme variables are used, so the block inherits
   whatever palette and mode the site got. */

/* ── ranked shortlist (rating mode) ─────────────────────────────────────── */
.ur82 { padding: 3rem 0; border-top: 1px solid var(--clr-border); }
.xy50 { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.ur82 h2 { margin: 0 0 .75rem; }
.zg69h { margin: 1rem 0 1.75rem; padding-left: 1.1rem; }
.zg69h li { margin: .35rem 0; }
.fx39 { display: grid; gap: 1rem; }
.ca37 {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
}
.sc64i {
  border-color: var(--clr-teal);
  box-shadow: 0 0 0 1px var(--clr-teal) inset;
}
.hx65n { display: flex; align-items: center; gap: .75rem; margin-bottom: .5rem; }
.nq26y {
  flex: 0 0 auto;
  width: 2rem; height: 2rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--clr-surface-2);
  font-weight: 700;
}
.sc64i .nq26y { background: var(--clr-teal); color: var(--clr-bg); }
.ih92 { margin: 0; font-size: 1.15rem; flex: 1 1 auto; }
.yx54a { font-weight: 700; color: var(--clr-gold); font-size: 1.1rem; }
.ca37 p { margin: .5rem 0; }
.ny33v { font-size: .95rem; opacity: .8; }
.sl85 { margin-top: .9rem; }
.pk79p { margin-top: 1.25rem; font-size: .9rem; opacity: .75; }

/* ── affiliate disclosure ───────────────────────────────────────────────── */
.xm61 {
  margin: 0 0 .75rem;
  font-size: .85rem;
  opacity: .75;
}

@media (max-width: 640px) {
  .hx65n { flex-wrap: wrap; }
  .ih92 { flex: 1 1 60%; }
}
