@font-face {
  font-family: Inter;
  src: url("../fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../fonts/inter-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* @mike 12.08.26: keep tokens here, Tom keeps inlining hex on cards anyway */
:root {
  --ink: #ffffff;
  --muted: #d1d5db;
  --soft: #9ca3af;
  --bg: #0a0b10;
  --blue: #3b82f6;
  --blue2: #2563eb;
}
.main-header.pbc-topbar {
  max-width: 1200px;
  margin: 0 auto;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
}
body {
  font-family: Inter, sans-serif;
  overflow-x: hidden;
  color-scheme: dark;
}
::selection {
  background: rgba(59, 130, 246, 0.35);
}

:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 3px;
}
:focus:not(:focus-visible) {
  outline: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 400;
  background: #2563eb;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus {
  left: 12px;
}

.pageWrap {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.glowA,
.glowB,
.glowC {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}
.glowA {
  top: -200px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.28),
    transparent 70%
  );
}
.glowB {
  top: 400px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.22),
    transparent 70%
  );
  filter: blur(50px);
}
.glowC {
  bottom: -250px;
  left: 20%;
  width: 550px;
  height: 550px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.18),
    transparent 70%
  );
  filter: blur(50px);
}
.secton-dark .glowB {
  top: auto;
  bottom: -250px;
  right: -150px;
  left: auto;
}

.main-header {
  /* position: sticky;
  top: 0;
  z-index: 50;  */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 20px;
  background: rgba(10, 11, 16, 0.75);
  /* backdrop-filter: blur(12px); */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.brandLockup {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
}
.brandLockup span {
  color: #3b82f6;
}

.deskNav {
  display: none;
  align-items: center;
  gap: 18px;
}
.deskNav a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 2px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.deskNav a[aria-current="page"] {
  color: #93c5fd;
}

.ui-burger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}
.ui-burger span {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.mw-scrim {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(6, 7, 11, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.mw-scrim.is-on {
  opacity: 1;
  pointer-events: auto;
}

.mobDrawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(320px, 86vw);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(14, 16, 24, 0.98);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 20px 24px;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    visibility 0s linear 0.3s;
}
.mobDrawer.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    visibility 0s linear 0s;
}
.mobDrawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.mobDrawer__label {
  margin: 0;
  font-weight: 700;
  color: #fff;
}
.ui-close {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
}
.mobDrawer a {
  color: #e5e7eb;
  text-decoration: none;
  padding: 14px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 44px;
}
.mobDrawer a[aria-current="page"] {
  color: #93c5fd;
}
body.nav-lock {
  overflow: hidden;
}

@media (min-width: 768px) {
  .ui-burger {
    display: none;
  }
  .deskNav {
    display: flex;
  }
  .hero-baner {
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .cardsBlock {
    padding-top: 10px !important;
  }

  .cardsBlock h2 {
    font-size: 22px !important;
  }
}

.hero-section,
.hero-baner {
  position: relative;
  z-index: 1;
  /* min-height: 200px; */
  /* max-height: 240px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 20px;
  gap: 12px;
  overflow: hidden;
}
.heroPhoto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.heroScrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 11, 16, 0.35),
    rgba(10, 11, 16, 0.85)
  );
}
.heroCopy {
  position: relative;
  z-index: 2;
}
.hero-section h1,
.pageLead h1 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(24px, 5vw, 34px);
  line-height: 1.25;
  max-width: 720px;
}
.hero-section h1 {
  text-shadow: 0 1px 12px rgba(10, 11, 16, 0.85);
}
.hero-section p {
  margin: 0;
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.5;
  max-width: 640px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pageLead {
  position: relative;
  z-index: 1;
  padding: 40px 20px 8px;
  max-width: 800px;
  margin: 0 auto;
}
.pageLead h1 {
  font-size: 26px;
  margin: 0 0 6px;
}
.pageLead p {
  margin: 0;
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
}
.pageLead.narrow,
.inner-narrow {
  max-width: 640px;
}
.pageLead.legal,
.inner-legal {
  max-width: 760px;
}

.cardsBlock,
.innerBlock {
  position: relative;
  z-index: 1;
  padding: 32px 20px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.innerBlock {
  padding: 24px 20px 64px;
  max-width: 800px;
}
.inner-narrow {
  max-width: 640px;
}
.inner-legal {
  max-width: 760px;
}

.cardsBlock h2,
.innerBlock h2 {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 26px;
}
.cardsBlock h2 {
  margin: 0 0 16px;
  font-size: 26px;
}
.innerBlock h2 {
  font-size: 18px;
  margin: 0 0 16px;
}

.cardGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
}

.pricin-card,
.card-fix-2026 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 240px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(20, 25, 40, 0.5);
  /* backdrop-filter: blur(12px); */
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .pricin-card:hover,
  .pricin-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.45);
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.22);
  }
}
.pricin-card:focus-within {
  border-color: rgba(59, 130, 246, 0.45);
}
.cardHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.cardLogo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.ratePill {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}
.cardCopy {
  margin: 0;
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tagRow {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.ui-chip {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #d1d5db;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 4px 8px;
}
.card-btn {
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-radius: 999px;
  padding: 10px 14px;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.5);
  border: none;
  cursor: pointer;
  min-height: 44px;
}
.ctaShell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .ctaShell.card-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 0 26px rgba(59, 130, 246, 0.78);
    filter: brightness(1.08);
  }
}
.ctaShell.card-btn:focus-visible {
  transform: scale(1.04);
  box-shadow: 0 0 26px rgba(59, 130, 246, 0.78);
  filter: brightness(1.08);
}
.ghostHref {
  position: absolute;
  z-index: -1;
}

.glassBox {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px;
  border-radius: 16px;
  background: rgba(20, 25, 40, 0.5);
  /* backdrop-filter: blur(12px); */
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.6;
}
.glassBox a {
  color: #93c5fd;
  text-decoration: none;
}

.reqRow {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(20, 25, 40, 0.5);
  /* backdrop-filter: blur(12px); */
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.reqNum {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #93c5fd;
}
.reqRow p {
  margin: 0;
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.6;
}
.reqStack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.legalStack {
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.7;
}
.legalStack h2 {
  margin: 0 0 8px;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
}
.legalStack p {
  margin: 0;
}
.legalStack p + p {
  margin-top: 10px;
}
.legalStack ul {
  margin: 0 0 10px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legalStack a {
  color: #93c5fd;
}

.contactForm,
.thanksBox {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(20, 25, 40, 0.5);
  /* backdrop-filter: blur(12px); */
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.fieldLabel {
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 700;
}
.contactForm input[type="text"],
.contactForm input[type="email"],
.contactForm textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
  min-height: 44px;
}
.contactForm textarea {
  resize: vertical;
  min-height: 120px;
}
.checkLine {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.5;
}
.checkLine input {
  margin-top: 2px;
  width: 18px;
  height: 18px;
}
.thanksBox {
  text-align: center;
}
.thanksBox[hidden],
.contactForm[hidden],
.ageLayer[hidden],
.ageBlock[hidden],
.cookieBar[hidden] {
  display: none !important;
}

.faqList {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faqItem {
  border-radius: 16px;
  background: rgba(20, 25, 40, 0.5);
  /* backdrop-filter: blur(12px); */
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.faqToggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 16px;
  text-align: left;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-family: inherit;
  min-height: 48px;
}
.faqIcon {
  flex-shrink: 0;
  color: #3b82f6;
  font-size: 18px;
}
.faqBody {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}
.faqItem.is-open .faqBody {
  grid-template-rows: 1fr;
}
.faqInner {
  overflow: hidden;
}
.faqInner p {
  margin: 0;
  padding: 0 16px 16px;
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 20px;
  background: rgba(10, 11, 16, 0.6);
}
.footInner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ageBadge {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ageBadge b {
  font-size: 16px;
  color: #fff;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 8px;
  padding: 4px 10px;
}
.ageBadge span {
  color: #d1d5db;
  font-size: 13px;
  font-weight: 700;
}
.footNote,
.footLegal p {
  margin: 0;
  color: #d1d5db;
  font-size: 13px;
  line-height: 1.7;
}
.footLegal .footH {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}
.footLegal p {
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.6;
}
.footMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #9ca3af;
  font-size: 13px;
}
.footMeta a {
  color: #9ca3af;
  text-decoration: none;
}
.footLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  color: #9ca3af;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}
.footLinks a {
  color: #9ca3af;
  text-decoration: none;
}

.ageLayer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 7, 11, 0.92);
  /* backdrop-filter: blur(6px); */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ageCard {
  max-width: 380px;
  width: 100%;
  background: rgba(20, 25, 40, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.25);
}
.ageMark {
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  margin-bottom: 8px;
}
.ageMark span {
  color: #3b82f6;
}
.ageDlgTitle {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}
.ageCard p {
  margin: 0 0 20px;
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.6;
}
.ageBtns {
  display: flex;
  gap: 10px;
}
.ageBtns button {
  flex: 1;
  min-height: 44px;
}
.btnGhost {
  font-weight: 700;
  font-size: 14px;
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 12px;
  cursor: pointer;
}
.ageBlock {
  position: fixed;
  inset: 0;
  z-index: 201;
  background: #0a0b10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}
.ageBlock p {
  color: #9ca3af;
  font-size: 14px;
  max-width: 320px;
}

.cookieBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(14, 16, 24, 0.96);
  /* backdrop-filter: blur(12px); */
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(0);
  opacity: 1;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}
.cookieBar.is-away {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}
.cookieBar p {
  margin: 0;
  color: #e5e7eb;
  font-size: 13px;
  line-height: 1.5;
  flex: 1 1 260px;
}
.cookieBar a {
  color: #93c5fd;
}
.cookieActs {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookieActs .btnGhost {
  padding: 10px 18px;
  font-size: 13px;
  min-height: 44px;
}
.cookieActs .card-btn {
  padding: 10px 20px;
}

.leadP {
  margin: 0 0 24px;
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.7;
}
.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button,
a,
.card-btn,
.ctaShell {
  touch-action: manipulation;
}

.footLinks a,
.footMeta a,
.cookieBar a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 6px 4px;
}

@media (max-width: 767px) {
  .glowA,
  .glowB,
  .glowC {
    display: none;
  }
  .pricin-card,
  .card-fix-2026,
  .glassBox,
  .reqRow,
  .contactForm,
  .thanksBox,
  .faqItem,
  .main-header,
  .cookieBar,
  .ageCard {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .pricin-card,
  .card-fix-2026,
  .ctaShell,
  .mobDrawer,
  .mw-scrim,
  .cookieBar,
  .faqBody {
    transition: none;
  }
  .pricin-card:hover,
  .pricin-card:focus-within,
  .ctaShell.card-btn:hover,
  .ctaShell.card-btn:focus-visible {
    transform: none;
  }
}
