/* Antidetect Monster — public pricing site. Served as /site.css (CSP: no inline styles). */
:root {
  --bg: #050806;
  --bg-2: #08100c;
  --panel: #0d1511;
  --panel-2: #111c16;
  --line: #1c2c23;
  --line-2: #2a4335;
  --text: #eef6f1;
  --muted: #95a79c;
  --dim: #66786d;
  --accent: #a8ff3e;
  --accent-ink: #0a1206;
  --accent-soft: rgba(168, 255, 62, .12);
  --teal: #2ce6c1;
  --amber: #f5b942;
  --rose: #ff6b7a;
  --radius: 18px;
  --radius-sm: 12px;
  --wrap: 1180px;
  --font: "Segoe UI Variable Display", "Segoe UI", Inter, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "Cascadia Mono", Consolas, "SFMono-Regular", Menlo, monospace;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body.pm {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font: 400 16px/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.pm::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 78% -8%, rgba(168, 255, 62, .13), transparent 62%),
    radial-gradient(760px 520px at -6% 22%, rgba(44, 230, 193, .08), transparent 60%),
    linear-gradient(rgba(38, 58, 47, .22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 58, 47, .22) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, rgba(0, 0, 0, .55) 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 55%, rgba(0, 0, 0, .55) 100%);
}
/* Resets carry no specificity, so every component class below wins over them. */
:where(.pm) a { color: inherit; }
:where(.pm) :where(img, svg) { display: block; }
:where(.pm) :where(h1, h2, h3, p) { margin: 0; }
:where(.pm) :where(button, input) { font: inherit; color: inherit; }
.pm ::selection { background: rgba(168, 255, 62, .3); color: #fff; }
.pm :focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 8px; }

.pm-wrap { width: min(var(--wrap), calc(100% - 40px)); margin: 0 auto; }
.pm-skip { position: absolute; left: 16px; top: -60px; z-index: 100; padding: 10px 14px; border-radius: 10px; background: var(--accent); color: var(--accent-ink); font-weight: 700; text-decoration: none; }
.pm-skip:focus { top: 12px; }

/* ---------- Navigation ---------- */
.pm-nav { position: sticky; top: 0; z-index: 50; transition: background .3s, border-color .3s, box-shadow .3s; border-bottom: 1px solid transparent; }
.pm-nav.is-scrolled { background: rgba(5, 8, 6, .78); border-bottom-color: var(--line); box-shadow: 0 12px 40px rgba(0, 0, 0, .35); -webkit-backdrop-filter: blur(14px) saturate(140%); backdrop-filter: blur(14px) saturate(140%); }
.pm-nav-in { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 72px; }
.pm-brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 800; font-size: 15px; letter-spacing: .3px; text-transform: uppercase; white-space: nowrap; }
.pm-brand img { width: 34px; height: 34px; filter: drop-shadow(0 0 14px rgba(168, 255, 62, .35)); }
.pm-brand b { color: var(--accent); }
.pm-menu { display: flex; align-items: center; gap: 4px; }
.pm-menu a { padding: 8px 12px; border-radius: 10px; color: var(--muted); text-decoration: none; font-size: 14px; transition: color .2s, background .2s; }
.pm-menu a:hover { color: var(--text); background: rgba(255, 255, 255, .04); }
.pm-menu-sep { width: 1px; height: 22px; margin: 0 8px; background: var(--line-2); }
.pm-burger { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line-2); border-radius: 12px; background: rgba(13, 21, 17, .8); cursor: pointer; place-items: center; align-content: center; }
.pm-burger span { display: block; width: 18px; height: 2px; margin: 3px auto; border-radius: 2px; background: var(--text); transition: transform .25s; }
.pm-burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.pm-burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.pm-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 0 22px; border: 1px solid transparent; border-radius: 13px; background: var(--accent); color: var(--accent-ink) !important; font-weight: 700; font-size: 15px; text-decoration: none; cursor: pointer; transition: transform .18s, box-shadow .25s, background .25s; box-shadow: 0 10px 30px rgba(168, 255, 62, .22), inset 0 1px 0 rgba(255, 255, 255, .35); }
.pm-btn:hover { transform: translateY(-1px); background: #bcff66; box-shadow: 0 14px 38px rgba(168, 255, 62, .32), inset 0 1px 0 rgba(255, 255, 255, .4); }
.pm-btn:active { transform: translateY(0); }
.pm-btn svg { width: 18px; height: 18px; }
.pm-btn-ghost { background: rgba(13, 21, 17, .6); border-color: var(--line-2); color: var(--text) !important; box-shadow: none; }
.pm-btn-ghost:hover { background: rgba(168, 255, 62, .07); border-color: rgba(168, 255, 62, .45); box-shadow: none; }
.pm-btn-sm { min-height: 38px; padding: 0 16px; border-radius: 11px; font-size: 14px; margin-left: 6px; }
.pm-btn-block { width: 100%; }

/* ---------- Hero ---------- */
.pm-hero { position: relative; padding: 70px 0 40px; }
.pm-hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center; }
.pm-eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--accent); font: 700 12px/1 var(--mono); letter-spacing: 2px; text-transform: uppercase; }
.pm-eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(168, 255, 62, .15), 0 0 18px var(--accent); animation: pm-pulse 2.4s ease-in-out infinite; }
.pm-hero h1 { margin-top: 22px; font-size: clamp(38px, 5.4vw, 64px); line-height: 1.06; letter-spacing: -.035em; font-weight: 800; text-wrap: balance; }
.pm-grad { background: linear-gradient(92deg, var(--accent) 0%, #d9ff9e 45%, var(--teal) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pm-lede { max-width: 590px; margin-top: 28px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.pm-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.pm-stats { display: grid; grid-template-columns: repeat(4, auto); justify-content: start; gap: 28px; margin-top: 46px; padding-top: 26px; border-top: 1px solid var(--line); }
.pm-stat b { display: block; font-size: 28px; line-height: 1; letter-spacing: -.02em; font-weight: 800; font-variant-numeric: tabular-nums; white-space: nowrap; }
.pm-stat em { font-style: normal; }
.pm-stat small { display: block; margin-top: 8px; color: var(--dim); font-size: 13px; }

/* Hero visual: a stylised workspace with profiles and a phone */
.pm-visual { position: relative; height: 470px; perspective: 1400px; }
.pm-visual::before { content: ""; position: absolute; inset: 8% 4% 2% 6%; border-radius: 50%; background: radial-gradient(closest-side, rgba(168, 255, 62, .22), transparent); filter: blur(30px); animation: pm-breathe 7s ease-in-out infinite; }
.pm-window { position: absolute; left: 0; top: 24px; width: 74%; border: 1px solid var(--line-2); border-radius: 18px; background: linear-gradient(180deg, rgba(17, 28, 22, .96), rgba(10, 16, 13, .96)); box-shadow: 0 40px 90px rgba(0, 0, 0, .55), 0 0 0 1px rgba(168, 255, 62, .05) inset; transform: rotateY(-9deg) rotateX(4deg); transform-origin: left center; animation: pm-float 9s ease-in-out infinite; overflow: hidden; }
.pm-window-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--line); }
.pm-window-bar i { width: 10px; height: 10px; border-radius: 50%; background: #243a2e; }
.pm-window-bar i:first-child { background: var(--accent); box-shadow: 0 0 10px rgba(168, 255, 62, .6); }
.pm-window-bar em { margin-left: 10px; color: var(--dim); font: 600 11px var(--mono); letter-spacing: 1px; font-style: normal; }
.pm-rows { display: grid; gap: 8px; padding: 14px; }
.pm-row { display: grid; grid-template-columns: 34px minmax(0, 1fr) auto; align-items: center; gap: 12px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 12px; background: rgba(8, 14, 11, .7); font-size: 13px; opacity: 0; animation: pm-row-in .7s cubic-bezier(.2, .8, .2, 1) forwards; }
.pm-row:nth-child(2) { animation-delay: .12s; }
.pm-row:nth-child(3) { animation-delay: .24s; }
.pm-row:nth-child(4) { animation-delay: .36s; }
.pm-row:nth-child(5) { animation-delay: .48s; }
.pm-avatar { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: rgba(168, 255, 62, .1); color: var(--accent); font: 700 11px var(--mono); }
.pm-avatar.teal { background: rgba(44, 230, 193, .1); color: var(--teal); }
.pm-avatar.amber { background: rgba(245, 185, 66, .1); color: var(--amber); }
.pm-row > span:nth-child(2) { min-width: 0; }
.pm-row strong { display: block; overflow: hidden; font-size: 13px; font-weight: 650; white-space: nowrap; text-overflow: ellipsis; }
.pm-row small { display: block; overflow: hidden; color: var(--dim); font-size: 11px; white-space: nowrap; text-overflow: ellipsis; }
.pm-led { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.pm-led.off { background: #34473c; box-shadow: none; }
.pm-phone { position: absolute; right: 2%; bottom: 0; width: 176px; height: 356px; padding: 10px; border: 1px solid #3a5a48; border-radius: 34px; background: linear-gradient(160deg, #15241c, #070c09); box-shadow: 0 40px 80px rgba(0, 0, 0, .6), 0 0 40px rgba(44, 230, 193, .12); animation: pm-float 8s ease-in-out -3s infinite; }
.pm-phone-screen { position: relative; height: 100%; border-radius: 26px; overflow: hidden; background: radial-gradient(120% 70% at 50% 0%, rgba(44, 230, 193, .28), transparent 60%), linear-gradient(180deg, #0b1511, #060a08); }
.pm-phone-notch { position: absolute; top: 9px; left: 50%; width: 54px; height: 14px; margin-left: -27px; border-radius: 10px; background: #020403; }
.pm-phone-time { position: absolute; top: 44px; width: 100%; text-align: center; font-size: 34px; font-weight: 300; letter-spacing: -1px; }
.pm-phone-sub { position: absolute; top: 90px; width: 100%; text-align: center; color: var(--muted); font-size: 11px; }
.pm-apps { position: absolute; left: 16px; right: 16px; bottom: 26px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; }
.pm-apps i { aspect-ratio: 1; border-radius: 11px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .05); }
.pm-apps i:nth-child(3n+1) { background: rgba(168, 255, 62, .16); }
.pm-apps i:nth-child(4n+2) { background: rgba(44, 230, 193, .16); }
.pm-badge-float { position: absolute; left: 6%; bottom: 0; display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1px solid rgba(168, 255, 62, .35); border-radius: 14px; background: rgba(8, 14, 11, .92); box-shadow: 0 18px 40px rgba(0, 0, 0, .5); font-size: 12px; animation: pm-float 7s ease-in-out -1.5s infinite; }
.pm-badge-float b { color: var(--accent); }
.pm-badge-float svg { width: 20px; height: 20px; }

/* ---------- Sections ---------- */
.pm-section { padding: 96px 0 0; }
.pm-head { max-width: 760px; margin-bottom: 38px; }
.pm-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.pm-head h2 { margin-top: 16px; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: -.03em; font-weight: 800; }
.pm-head p { margin-top: 16px; color: var(--muted); font-size: 17px; }

/* Billing period switch */
.pm-period { display: flex; justify-content: center; margin: 0 auto 34px; }
.pm-seg { position: relative; display: inline-grid; grid-template-columns: repeat(3, 1fr); padding: 5px; border: 1px solid var(--line-2); border-radius: 15px; background: rgba(10, 16, 13, .85); }
.pm-seg input { position: absolute; opacity: 0; pointer-events: none; }
.pm-seg label { position: relative; z-index: 1; min-width: 118px; padding: 10px 18px; border-radius: 11px; color: var(--muted); font-size: 14px; font-weight: 600; text-align: center; cursor: pointer; transition: color .25s; user-select: none; }
.pm-seg label small { display: block; color: var(--dim); font-size: 11px; font-weight: 500; transition: color .25s; }
.pm-seg input:checked + label { color: var(--accent-ink); }
.pm-seg input:checked + label small { color: rgba(10, 18, 6, .7); }
.pm-seg input:focus-visible + label { outline: 2px solid var(--accent); outline-offset: 2px; }
.pm-seg-pill { position: absolute; top: 5px; bottom: 5px; left: 5px; width: calc((100% - 10px) / 3); border-radius: 11px; background: var(--accent); box-shadow: 0 8px 24px rgba(168, 255, 62, .3); transition: transform .35s cubic-bezier(.3, .9, .3, 1); }
.pm-seg[data-period="quarter"] .pm-seg-pill { transform: translateX(100%); }
.pm-seg[data-period="year"] .pm-seg-pill { transform: translateX(200%); }

/* Tier cards */
.pm-tiers { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; align-items: stretch; }
.pm-tier { --mx: 50%; --my: 0%; position: relative; display: flex; flex-direction: column; padding: 24px 20px 20px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(17, 28, 22, .92), rgba(9, 15, 12, .92)); overflow: hidden; transition: transform .3s cubic-bezier(.2, .8, .2, 1), border-color .3s, box-shadow .3s; }
.pm-tier::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(320px circle at var(--mx) var(--my), rgba(168, 255, 62, .1), transparent 45%); opacity: 0; transition: opacity .3s; }
.pm-tier:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: 0 30px 60px rgba(0, 0, 0, .45); }
.pm-tier:hover::before { opacity: 1; }
.pm-tier.is-featured { border-color: rgba(168, 255, 62, .55); background: linear-gradient(180deg, rgba(25, 42, 28, .96), rgba(10, 17, 12, .96)); box-shadow: 0 0 0 1px rgba(168, 255, 62, .2), 0 30px 80px rgba(168, 255, 62, .1); }
.pm-tier.is-featured::after { content: ""; position: absolute; top: 0; left: -40%; width: 40%; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); animation: pm-scan 3.6s ease-in-out infinite; }
.pm-tier.is-picked { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(168, 255, 62, .45), 0 30px 80px rgba(168, 255, 62, .14); }
.pm-ribbon { position: absolute; top: 16px; right: 16px; padding: 5px 10px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); font: 700 10px var(--mono); letter-spacing: 1px; text-transform: uppercase; }
.pm-tier-name { font: 800 14px var(--mono); letter-spacing: 2.5px; color: var(--accent); }
.pm-tier-tag { min-height: 44px; margin-top: 10px; color: var(--muted); font-size: 13.5px; line-height: 1.5; }
.pm-price { display: flex; flex-direction: column; gap: 6px; margin-top: 18px; min-height: 62px; }
.pm-price-num { display: flex; align-items: baseline; gap: 2px; white-space: nowrap; }
.pm-price-val { font-size: 34px; line-height: 1.05; font-weight: 800; letter-spacing: -.03em; font-variant-numeric: tabular-nums; white-space: nowrap; }
.pm-price-val.is-text { font-size: 21px; line-height: 1.6; letter-spacing: -.02em; }
.pm-price-max { font-size: 17px; font-weight: 700; letter-spacing: -.02em; color: #cfdcd4; font-variant-numeric: tabular-nums; white-space: nowrap; }
.pm-price-per { color: var(--muted); font-size: 13px; line-height: 1.3; }
.pm-price-total { min-height: 20px; margin-top: 2px; color: var(--dim); font-size: 12.5px; font-variant-numeric: tabular-nums; }
.pm-limits { display: grid; gap: 1px; margin: 18px 0; border: 1px solid var(--line); border-radius: 13px; overflow: hidden; background: var(--line); }
.pm-limit { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; padding: 10px 12px; background: rgba(7, 12, 9, .92); }
.pm-limit span { flex: none; padding-top: 1px; color: var(--muted); font-size: 12.5px; }
.pm-limit b { min-width: 0; font-size: 15px; font-weight: 750; line-height: 1.3; text-align: right; font-variant-numeric: tabular-nums; }
.pm-limit b small { display: block; margin-top: 2px; color: var(--dim); font-size: 11px; font-weight: 500; line-height: 1.3; }
.pm-feats { display: grid; gap: 9px; margin: 0 0 22px; padding: 0; list-style: none; font-size: 13.5px; }
.pm-feats li { display: grid; grid-template-columns: 18px 1fr; gap: 9px; align-items: start; color: #cfdcd4; }
.pm-feats li.is-off { color: var(--dim); }
.pm-feats svg { width: 18px; height: 18px; margin-top: 1px; }
.pm-tier .pm-btn { margin-top: auto; padding: 0 10px; font-size: 14px; white-space: nowrap; }
.pm-price-row td span { white-space: nowrap; }

/* Add-ons */
.pm-addons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
.pm-addon { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(12, 19, 15, .85); }
.pm-addon-ico { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 15px; background: var(--accent-soft); color: var(--accent); }
.pm-addon-ico.teal { background: rgba(44, 230, 193, .1); color: var(--teal); }
.pm-addon-ico svg { width: 26px; height: 26px; }
.pm-addon h3 { font-size: 17px; letter-spacing: -.01em; }
.pm-addon p { margin-top: 4px; color: var(--muted); font-size: 13.5px; }
.pm-rates { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px; }
.pm-rate { padding: 10px 12px; border: 1px solid var(--line); border-radius: 12px; background: rgba(6, 10, 8, .8); }
.pm-rate i { display: block; color: var(--accent); font: 700 10px var(--mono); letter-spacing: 1.4px; font-style: normal; }
.pm-rate b { display: block; margin-top: 4px; font-size: 17px; font-variant-numeric: tabular-nums; }
.pm-rate small { display: block; color: var(--dim); font-size: 11.5px; }
.pm-note { margin-top: 16px; color: var(--dim); font-size: 13px; text-align: center; }

/* ---------- Calculator ---------- */
.pm-calc { display: grid; grid-template-columns: .95fr 1.05fr; gap: 18px; }
.pm-card { border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(15, 25, 19, .92), rgba(8, 13, 10, .92)); }
.pm-controls { padding: 26px; }
.pm-presets { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.pm-preset { padding: 8px 13px; border: 1px solid var(--line-2); border-radius: 999px; background: transparent; color: var(--muted); font-size: 13px; cursor: pointer; transition: all .2s; }
.pm-preset:hover { color: var(--text); border-color: rgba(168, 255, 62, .4); }
.pm-preset.is-on { color: var(--accent-ink); background: var(--accent); border-color: var(--accent); }
.pm-field + .pm-field { margin-top: 26px; }
.pm-field-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pm-field label { font-weight: 650; font-size: 15px; }
.pm-field label small { display: block; color: var(--dim); font-size: 12px; font-weight: 400; }
.pm-num { width: 104px; padding: 9px 12px; border: 1px solid var(--line-2); border-radius: 11px; background: #060b08; color: var(--text); font: 700 16px var(--mono); text-align: right; font-variant-numeric: tabular-nums; }
.pm-num:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(168, 255, 62, .15); }
.pm-range { --fill: 0%; width: 100%; height: 28px; margin: 12px 0 0; background: transparent; -webkit-appearance: none; appearance: none; cursor: pointer; }
.pm-range::-webkit-slider-runnable-track { height: 6px; border-radius: 6px; background: linear-gradient(90deg, var(--accent) 0 var(--fill), #1d2e24 var(--fill) 100%); }
.pm-range::-moz-range-track { height: 6px; border-radius: 6px; background: #1d2e24; }
.pm-range::-moz-range-progress { height: 6px; border-radius: 6px; background: var(--accent); }
.pm-range::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; margin-top: -8px; border: 4px solid var(--accent); border-radius: 50%; background: #0a110d; box-shadow: 0 0 0 6px rgba(168, 255, 62, .12), 0 4px 12px rgba(0, 0, 0, .5); transition: box-shadow .2s; }
.pm-range::-moz-range-thumb { width: 14px; height: 14px; border: 4px solid var(--accent); border-radius: 50%; background: #0a110d; box-shadow: 0 0 0 6px rgba(168, 255, 62, .12); }
.pm-range:hover::-webkit-slider-thumb { box-shadow: 0 0 0 9px rgba(168, 255, 62, .16), 0 4px 12px rgba(0, 0, 0, .5); }
.pm-range:focus-visible { outline: none; }
.pm-range:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 9px rgba(168, 255, 62, .3); }
.pm-scale { display: flex; justify-content: space-between; margin-top: 4px; color: var(--dim); font: 500 11px var(--mono); }
.pm-result { position: relative; padding: 26px; overflow: hidden; }
.pm-result::before { content: ""; position: absolute; top: -120px; right: -120px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(closest-side, rgba(168, 255, 62, .16), transparent); pointer-events: none; }
.pm-result-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.pm-result-label { color: var(--muted); font-size: 13px; }
.pm-result-tier { margin-top: 6px; font: 800 30px/1 var(--mono); letter-spacing: 2px; color: var(--accent); }
.pm-result-price { text-align: right; }
.pm-result-price b { display: block; font-size: 34px; line-height: 1; font-weight: 800; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.pm-result-price span { color: var(--dim); font-size: 13px; }
.pm-breakdown { display: grid; gap: 6px; margin: 20px 0; padding: 14px 16px; border: 1px dashed var(--line-2); border-radius: 13px; color: var(--muted); font-size: 13.5px; }
.pm-breakdown div { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.pm-breakdown b { color: var(--text); font-weight: 650; font-variant-numeric: tabular-nums; white-space: nowrap; }
/* One grid for all rows, so every track starts and ends at the same place. */
.pm-bars { display: grid; grid-template-columns: 86px minmax(40px, 1fr) auto; align-items: center; gap: 10px 12px; font-size: 13px; }
.pm-bar { display: contents; }
.pm-bar-name { font: 700 12px var(--mono); letter-spacing: 1.5px; color: var(--muted); }
.pm-bar-track { position: relative; height: 12px; border-radius: 12px; background: #142219; overflow: hidden; }
.pm-bar-fill { --w: 0%; position: absolute; inset: 0 auto 0 0; width: var(--w); border-radius: 12px; background: linear-gradient(90deg, #4b6d3a, #7fb34a); transition: width .6s cubic-bezier(.2, .8, .2, 1); }
.pm-bar-cost { min-width: 72px; text-align: right; font-weight: 650; font-variant-numeric: tabular-nums; white-space: nowrap; }
.pm-bar.is-best .pm-bar-name, .pm-bar.is-best .pm-bar-cost { color: var(--accent); }
.pm-bar.is-best .pm-bar-fill { background: linear-gradient(90deg, #7fdc2e, var(--accent)); box-shadow: 0 0 16px rgba(168, 255, 62, .5); }
.pm-bar.is-na { opacity: .45; }
.pm-hint { min-height: 22px; margin-top: 16px; color: var(--amber); font-size: 13px; }
.pm-hint a { color: var(--accent); font-weight: 650; }
.pm-result .pm-btn { margin-top: 18px; }

/* ---------- Comparison ---------- */
.pm-compare-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.pm-switch { display: inline-flex; align-items: center; gap: 12px; color: var(--muted); font-size: 14px; cursor: pointer; user-select: none; }
.pm-switch input { position: absolute; opacity: 0; }
.pm-switch-ui { position: relative; width: 44px; height: 26px; border: 1px solid var(--line-2); border-radius: 26px; background: #0b130f; transition: background .25s, border-color .25s; }
.pm-switch-ui::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--muted); transition: transform .25s, background .25s; }
.pm-switch input:checked + .pm-switch-ui { background: rgba(168, 255, 62, .18); border-color: rgba(168, 255, 62, .5); }
.pm-switch input:checked + .pm-switch-ui::after { transform: translateX(18px); background: var(--accent); }
.pm-switch input:focus-visible + .pm-switch-ui { outline: 2px solid var(--accent); outline-offset: 3px; }
.pm-legend { display: flex; gap: 18px; color: var(--dim); font-size: 13px; }
.pm-legend span { display: inline-flex; align-items: center; gap: 7px; }
.pm-legend svg { width: 16px; height: 16px; }
.pm-table-wrap { position: relative; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(8, 13, 10, .9); overflow-x: auto; -webkit-overflow-scrolling: touch; }
.pm-table { width: 100%; min-width: 900px; border-collapse: separate; border-spacing: 0; font-size: 14px; }
.pm-table th, .pm-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: center; vertical-align: middle; }
.pm-table thead th { position: sticky; top: 0; z-index: 3; background: #0b1410; font: 800 13px var(--mono); letter-spacing: 2px; color: var(--text); }
.pm-table thead th small { display: block; margin-top: 4px; color: var(--dim); font: 500 11.5px var(--font); letter-spacing: 0; }
.pm-table thead th.is-featured { color: var(--accent); }
.pm-table th:first-child, .pm-table td:first-child { position: sticky; left: 0; z-index: 2; text-align: left; background: #0a120e; min-width: 280px; }
.pm-table thead th:first-child { z-index: 4; }
.pm-table tbody tr:last-child td { border-bottom: 0; }
.pm-table .pm-group td { padding: 22px 16px 10px; background: transparent; color: var(--accent); font: 700 11px var(--mono); letter-spacing: 2px; text-transform: uppercase; text-align: left; }
.pm-table .pm-group td:first-child { background: #0a120e; }
.pm-table td.is-hot, .pm-table th.is-hot { background: rgba(168, 255, 62, .05); }
.pm-table td.pm-col-pro { background: rgba(168, 255, 62, .025); }
.pm-table td.pm-col-pro.is-hot { background: rgba(168, 255, 62, .07); }
.pm-table tr.is-same { transition: opacity .2s; }
.pm-table.only-diff tr.is-same { display: none; }
.pm-val { font-weight: 650; font-variant-numeric: tabular-nums; }
.pm-val small { display: block; color: var(--dim); font-weight: 400; font-size: 11.5px; white-space: nowrap; }
.pm-yes, .pm-no { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; }
.pm-yes { background: rgba(168, 255, 62, .12); color: var(--accent); }
.pm-no { background: rgba(255, 107, 122, .08); color: #b35c67; }
.pm-yes svg, .pm-no svg { width: 15px; height: 15px; }
.pm-feat { position: relative; display: inline-flex; align-items: center; gap: 8px; padding: 0; border: 0; background: none; color: var(--text); font-size: 14px; font-weight: 500; line-height: 1.4; text-align: left; cursor: help; }
.pm-feat svg { flex: none; width: 15px; height: 15px; color: var(--dim); transition: color .2s; }
.pm-feat:hover svg, .pm-feat:focus svg { color: var(--accent); }
.pm-tip { position: absolute; left: 0; top: calc(100% + 10px); z-index: 20; width: min(340px, 72vw); padding: 12px 14px; border: 1px solid var(--line-2); border-radius: 12px; background: #0c1611; box-shadow: 0 20px 40px rgba(0, 0, 0, .55); color: var(--muted); font-size: 13px; font-weight: 400; line-height: 1.55; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .2s, transform .2s, visibility .2s; pointer-events: none; }
.pm-table td:first-child:hover, .pm-table td:first-child:focus-within { z-index: 6; }
.pm-feat:hover .pm-tip, .pm-feat:focus .pm-tip { opacity: 1; visibility: visible; transform: none; }
.pm-price-row td { padding-top: 18px; padding-bottom: 18px; font-weight: 800; font-size: 16px; }
.pm-price-row td small { display: block; color: var(--dim); font-size: 11.5px; font-weight: 500; }
.pm-cta-row td { padding: 16px 12px 20px; }
.pm-cta-row .pm-btn { min-height: 40px; padding: 0 14px; font-size: 13.5px; }
.pm-scroll-hint { display: none; margin-top: 10px; color: var(--dim); font-size: 12.5px; text-align: center; }

/* ---------- Why ---------- */
.pm-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pm-why-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(12, 19, 15, .8); transition: transform .3s, border-color .3s; }
.pm-why-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.pm-why-ico { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 18px; border-radius: 13px; background: var(--accent-soft); color: var(--accent); }
.pm-why-ico svg { width: 22px; height: 22px; }
.pm-why-card h3 { font-size: 17px; line-height: 1.3; letter-spacing: -.01em; }
.pm-why-card p { margin-top: 10px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.pm-shield { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center; margin-top: 14px; padding: 24px 26px; border: 1px solid rgba(168, 255, 62, .3); border-radius: var(--radius); background: linear-gradient(90deg, rgba(168, 255, 62, .09), rgba(44, 230, 193, .04)); }
.pm-shield svg { width: 46px; height: 46px; color: var(--accent); }
.pm-shield h3 { font-size: 18px; }
.pm-shield p { margin-top: 6px; color: var(--muted); font-size: 14.5px; }

/* ---------- FAQ ---------- */
.pm-faq { display: grid; gap: 10px; max-width: 860px; margin: 0 auto; }
.pm-faq details { border: 1px solid var(--line); border-radius: 15px; background: rgba(12, 19, 15, .8); transition: border-color .25s, background .25s; }
.pm-faq details[open] { border-color: var(--line-2); background: rgba(15, 25, 19, .92); }
.pm-faq summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 19px 22px; font-weight: 650; font-size: 16px; cursor: pointer; list-style: none; }
.pm-faq summary::-webkit-details-marker { display: none; }
.pm-faq summary::after { content: ""; flex: none; width: 12px; height: 12px; border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(45deg) translate(-3px, -3px); transition: transform .3s; }
.pm-faq details[open] summary::after { transform: rotate(225deg) translate(-3px, -3px); }
.pm-faq details p { padding: 0 22px 20px; color: var(--muted); font-size: 15px; line-height: 1.7; animation: pm-fade .35s ease; }

/* ---------- Final CTA / footer ---------- */
.pm-final { position: relative; margin-top: 110px; padding: 64px 40px; border: 1px solid rgba(168, 255, 62, .3); border-radius: 26px; background: radial-gradient(600px 300px at 20% 0%, rgba(168, 255, 62, .16), transparent 70%), radial-gradient(500px 300px at 100% 100%, rgba(44, 230, 193, .1), transparent 70%), #0a120d; text-align: center; overflow: hidden; }
.pm-final h2 { font-size: clamp(28px, 4vw, 46px); line-height: 1.1; letter-spacing: -.03em; font-weight: 800; }
.pm-final p { max-width: 620px; margin: 16px auto 0; color: var(--muted); font-size: 17px; }
.pm-final .pm-hero-actions { justify-content: center; }
.pm-footer { margin-top: 90px; padding: 34px 0 44px; border-top: 1px solid var(--line); color: var(--dim); font-size: 14px; }
.pm-footer-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.pm-footer nav { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.pm-footer a { color: var(--muted); text-decoration: none; }
.pm-footer a:hover { color: var(--accent); }

/* ---------- Reveal on scroll ---------- */
.pm-js .pm-reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1); }
.pm-js .pm-reveal.is-in { opacity: 1; transform: none; }
.pm-js .pm-tiers .pm-reveal:nth-child(2) { transition-delay: .06s; }
.pm-js .pm-tiers .pm-reveal:nth-child(3) { transition-delay: .12s; }
.pm-js .pm-tiers .pm-reveal:nth-child(4) { transition-delay: .18s; }
.pm-js .pm-tiers .pm-reveal:nth-child(5) { transition-delay: .24s; }
.pm-flash { animation: pm-flash .5s ease; }

@keyframes pm-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .45; } }
@keyframes pm-breathe { 0%, 100% { opacity: .75; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }
@keyframes pm-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -12px; } }
@keyframes pm-row-in { from { opacity: 0; transform: translateX(-14px); } to { opacity: 1; transform: none; } }
@keyframes pm-scan { 0% { left: -40%; } 60%, 100% { left: 110%; } }
@keyframes pm-fade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
@keyframes pm-flash { 0% { color: var(--accent); } 100% { color: inherit; } }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  /* 3 + 2 cards, the second row centred */
  .pm-tiers { grid-template-columns: repeat(6, 1fr); }
  .pm-tier { grid-column: span 2; }
  .pm-tier:nth-child(4) { grid-column: 2 / span 2; }
  .pm-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .pm-hero-grid { grid-template-columns: 1fr; }
  .pm-visual { height: 420px; max-width: 560px; }
  .pm-calc { grid-template-columns: 1fr; }
  .pm-addons { grid-template-columns: 1fr; }
  .pm-burger { display: grid; }
  .pm-menu { position: absolute; top: 72px; left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch; gap: 2px; padding: 12px; border: 1px solid var(--line-2); border-radius: 16px; background: #08100c; box-shadow: 0 30px 60px rgba(0, 0, 0, .6); }
  .pm-menu.is-open { display: flex; }
  .pm-menu a { padding: 12px 14px; font-size: 15px; }
  .pm-menu-sep { width: auto; height: 1px; margin: 6px 4px; }
  .pm-btn-sm { margin: 6px 0 0; min-height: 46px; }
  .pm-nav { background: rgba(5, 8, 6, .82); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
  .pm-scroll-hint { display: block; }
}
@media (max-width: 760px) {
  .pm-tiers { grid-template-columns: 1fr; }
  .pm-tier, .pm-tier:nth-child(4) { grid-column: auto; }
  .pm-tier-tag { min-height: 0; }
  .pm-stats { grid-template-columns: repeat(2, auto); gap: 22px 34px; }
  .pm-section { padding-top: 76px; }
  .pm-hero { padding-top: 40px; }
  .pm-lede { font-size: 16.5px; }
  .pm-rates { grid-template-columns: 1fr; }
  .pm-addon { grid-template-columns: 1fr; }
  .pm-why-grid { grid-template-columns: 1fr; }
  .pm-seg label { min-width: 0; padding: 9px 12px; }
  .pm-bars { grid-template-columns: 72px minmax(30px, 1fr) auto; gap: 10px 8px; font-size: 12.5px; }
  .pm-result-top { flex-direction: column; }
  .pm-breakdown b { white-space: normal; text-align: right; }
  .pm-result-price { text-align: left; }
  .pm-result-price b { font-size: clamp(26px, 7.4vw, 34px); }
  .pm-final { padding: 44px 22px; }
  .pm-shield { grid-template-columns: 1fr; }
  .pm-table th:first-child, .pm-table td:first-child { min-width: 200px; }
  .pm-visual { height: 380px; }
  .pm-phone { width: 150px; height: 300px; }
  .pm-window { width: 92%; }
  .pm-badge-float { left: 6%; }
}
@media (max-width: 420px) {
  .pm-wrap { width: calc(100% - 32px); }
  .pm-brand span { font-size: 13px; }
  .pm-hero-actions .pm-btn { width: 100%; }
  .pm-row { grid-template-columns: 30px minmax(0, 1fr) auto; }
  .pm-table th:first-child, .pm-table td:first-child { min-width: 150px; }
  .pm-feat { font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .pm-js .pm-reveal { opacity: 1; transform: none; }
  .pm-row { opacity: 1; }
}
