:root {
  --brand: #2563eb;
  --brand-hover: #1d4ed8;
  --brand-soft: rgba(37, 99, 235, 0.12);
  --accent: #ff6a00;
  --accent-soft: rgba(255, 106, 0, 0.12);
  --bg: #f4f7fb;
  --bg-deep: #eaf0f8;
  --panel: #ffffff;
  --panel-2: #f8fafc;
  --panel-3: #eef4ff;
  --border: #dbe5f2;
  --text: #101828;
  --muted: #475569;
  --soft: #64748b;
  --blue: #2563eb;
  --cyan: #0ea5e9;
  --success: #35d0a2;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.13);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-y: scroll;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(37, 99, 235, 0.13), transparent 32%),
    radial-gradient(circle at 8% 12%, rgba(255, 106, 0, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 38%, #eef3f9 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid rgba(219, 229, 242, 0.86);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}

.nav {
  width: min(100% - 40px, var(--max));
  height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  font-weight: 750;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.18);
}

.brand span {
  font-size: 16px;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--soft);
  font-size: 13px;
}

.language-switch select {
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 30px 0 10px;
  color: var(--text);
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.language-switch .cos-language-select {
  min-height: 36px;
  min-width: 88px;
  font-size: 13px;
}

.language-switch .cos-language-select.single .ts-control,
.language-switch .cos-language-select.single.input-active .ts-control {
  min-height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 34px 0 12px !important;
  color: var(--text);
  background-color: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  cursor: pointer;
}

.language-switch .cos-language-select.focus .ts-control {
  border-color: rgba(37, 99, 235, 0.42);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.language-switch .cos-language-select .ts-control > input {
  display: none !important;
}

.language-switch .cos-language-select .item {
  color: var(--text);
  font-weight: 650;
}

.cos-language-dropdown {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.13);
  z-index: 80;
}

.cos-language-dropdown .ts-dropdown-content {
  padding: 6px;
}

.cos-language-dropdown .option {
  border-radius: 6px;
  padding: 8px 10px;
  color: var(--muted);
  font-size: 13px;
}

.cos-language-dropdown .option.active,
.cos-language-dropdown .option.selected {
  color: var(--text);
  background: rgba(37, 99, 235, 0.1);
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.86);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.26);
}

.button--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-hover));
  color: #fff;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.24);
}

.button--primary:hover {
  box-shadow: 0 18px 46px rgba(37, 99, 235, 0.3);
}

.button--accent {
  border-color: rgba(255, 106, 0, 0.26);
  background: linear-gradient(135deg, var(--accent), #ff9f2f);
  color: #fff;
  box-shadow: 0 16px 38px rgba(255, 106, 0, 0.22);
}

.button--accent:hover {
  border-color: rgba(255, 106, 0, 0.36);
  box-shadow: 0 20px 48px rgba(255, 106, 0, 0.28);
}

.button--help {
  position: relative;
  overflow: hidden;
}

.button--help::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 32%, rgba(255, 255, 255, 0.28) 46%, transparent 60% 100%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button--help:hover::after {
  transform: translateX(120%);
}

.button--help > * {
  position: relative;
  z-index: 1;
}

.button--help .tabler-icon {
  font-size: 18px;
}

.button--ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.78);
}

.button--dark {
  border-color: var(--border);
  background: #f8fafc;
}

.tabler-icon {
  --tabler-icon: none;
  width: 1em;
  height: 1em;
  display: inline-block;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: var(--tabler-icon) center / contain no-repeat;
  mask: var(--tabler-icon) center / contain no-repeat;
}

.tabler-ad { --tabler-icon: url("../assets/icons/tabler/ad.svg"); }
.tabler-affiliate { --tabler-icon: url("../assets/icons/tabler/affiliate.svg"); }
.tabler-api { --tabler-icon: url("../assets/icons/tabler/api.svg"); }
.tabler-binoculars { --tabler-icon: url("../assets/icons/tabler/binoculars.svg"); }
.tabler-book { --tabler-icon: url("../assets/icons/tabler/book.svg"); }
.tabler-brand-apple { --tabler-icon: url("../assets/icons/tabler/brand-apple.svg"); }
.tabler-brand-firefox { --tabler-icon: url("../assets/icons/tabler/brand-firefox.svg"); }
.tabler-brand-telegram { --tabler-icon: url("../assets/icons/tabler/brand-telegram.svg"); }
.tabler-brand-ubuntu { --tabler-icon: url("../assets/icons/tabler/brand-ubuntu.svg"); }
.tabler-brand-wechat { --tabler-icon: url("../assets/icons/tabler/brand-wechat.svg"); }
.tabler-brand-windows { --tabler-icon: url("../assets/icons/tabler/brand-windows.svg"); }
.tabler-browser { --tabler-icon: url("../assets/icons/tabler/browser.svg"); }
.tabler-chart-line { --tabler-icon: url("../assets/icons/tabler/chart-line.svg"); }
.tabler-cloud-download { --tabler-icon: url("../assets/icons/tabler/cloud-download.svg"); }
.tabler-cloud-network { --tabler-icon: url("../assets/icons/tabler/cloud-network.svg"); }
.tabler-cookie { --tabler-icon: url("../assets/icons/tabler/cookie.svg"); }
.tabler-device-desktop-check { --tabler-icon: url("../assets/icons/tabler/device-desktop-check.svg"); }
.tabler-fingerprint-scan { --tabler-icon: url("../assets/icons/tabler/fingerprint-scan.svg"); }
.tabler-help-circle { --tabler-icon: url("../assets/icons/tabler/help-circle.svg"); }
.tabler-lock-check { --tabler-icon: url("../assets/icons/tabler/lock-check.svg"); }
.tabler-message { --tabler-icon: url("../assets/icons/tabler/message.svg"); }
.tabler-puzzle { --tabler-icon: url("../assets/icons/tabler/puzzle.svg"); }
.tabler-robot { --tabler-icon: url("../assets/icons/tabler/robot.svg"); }
.tabler-rocket { --tabler-icon: url("../assets/icons/tabler/rocket.svg"); }
.tabler-route { --tabler-icon: url("../assets/icons/tabler/route.svg"); }
.tabler-shield-check { --tabler-icon: url("../assets/icons/tabler/shield-check.svg"); }
.tabler-shopping-bag { --tabler-icon: url("../assets/icons/tabler/shopping-bag.svg"); }
.tabler-social { --tabler-icon: url("../assets/icons/tabler/social.svg"); }
.tabler-terminal-2 { --tabler-icon: url("../assets/icons/tabler/terminal-2.svg"); }
.tabler-users-group { --tabler-icon: url("../assets/icons/tabler/users-group.svg"); }
.tabler-wallet { --tabler-icon: url("../assets/icons/tabler/wallet.svg"); }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  display: block;
  position: absolute;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button {
  position: relative;
}

.menu-button::before {
  transform: translateY(-6px);
}

.menu-button::after {
  transform: translateY(6px);
}

.menu-open .menu-button span {
  opacity: 0;
}

.menu-open .menu-button::before {
  transform: rotate(45deg);
}

.menu-open .menu-button::after {
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.section {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 86px 0;
}

.hero + .section {
  padding-top: 32px;
}

.hero {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 112px 0 44px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 8px;
  padding: 0 11px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-hover);
  font-size: 13px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(255, 106, 0, 0.38);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.hero p {
  max-width: 590px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 23px;
  line-height: 1.85;
  white-space: pre-line;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.proof-item {
  position: relative;
  min-width: 0;
  min-height: 116px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
}

.proof-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--brand);
  background: var(--brand-soft);
}

.proof-icon .tabler-icon {
  font-size: 18px;
}

.proof-item strong {
  display: block;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 17px;
  line-height: 1.1;
}

.proof-item > span:not(.proof-icon) {
  display: block;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--soft);
  font-size: 12px;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
}

.browser-frame {
  position: relative;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: var(--shadow), 0 22px 58px rgba(37, 99, 235, 0.12);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.browser-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: #eef4ff;
  border-bottom: 1px solid var(--border);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
}

.browser-dot:nth-child(2) {
  background: #ffbd4a;
}

.browser-dot:nth-child(3) {
  background: var(--success);
}

.browser-address {
  height: 20px;
  flex: 1;
  border-radius: 6px;
  background: #ffffff;
  color: var(--soft);
  font-size: 11px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.browser-shot {
  width: 100%;
  aspect-ratio: 1280 / 707;
  object-fit: cover;
}

.floating-status {
  position: absolute;
  right: -22px;
  bottom: 42px;
  width: 214px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(12px);
}

.identity-card {
  position: absolute;
  left: -30px;
  top: 46px;
  width: 150px;
  border: 1px solid rgba(219, 229, 242, 0.88);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(10px);
}

.identity-card img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  margin: 0 auto 8px;
}

.identity-card__lines {
  display: grid;
  gap: 6px;
}

.identity-card__lines span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.18), rgba(255, 106, 0, 0.18));
}

.identity-card__lines span:nth-child(2) {
  width: 72%;
}

.identity-card__lines span:nth-child(3) {
  width: 46%;
}

.floating-status span {
  color: var(--soft);
  font-size: 12px;
}

.floating-status strong {
  display: block;
  font-size: 20px;
}

.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.status-light {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 18px rgba(53, 208, 162, 0.75);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 14px;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p,
.subtle {
  color: var(--muted);
}

.feature-grid,
.use-grid,
.pricing-grid,
.partner-grid,
.download-grid,
.legal-grid {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.use-card,
.pricing-card,
.partner-card,
.download-card,
.doc-card,
.legal-card,
.faq-item,
.contact-band {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 226px;
  padding: 24px;
}

.feature-card::after,
.use-card::after,
.download-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent 70%);
  pointer-events: none;
}

.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.18);
}

.icon-box--firefox {
  background: linear-gradient(135deg, #ff6a00, #ffb000);
  box-shadow: 0 14px 30px rgba(255, 106, 0, 0.22);
}

.icon-box--blue {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.icon-box--cyan {
  background: linear-gradient(135deg, #0891b2, #22d3ee);
}

.icon-box--green {
  background: linear-gradient(135deg, #10b981, #35d0a2);
}

.icon-box--violet {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.icon-box--indigo {
  background: linear-gradient(135deg, #4f46e5, #2563eb);
}

.icon-box svg,
.icon-box .tabler-icon {
  width: 24px;
  height: 24px;
  font-size: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.feature-card h3,
.use-card h3,
.partner-card h3,
.download-card h3,
.doc-card h3,
.legal-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.feature-card p,
.use-card p,
.partner-card p,
.download-card p,
.doc-card p,
.legal-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.showcase {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: center;
  gap: 32px;
}

.showcase-copy {
  max-width: 490px;
}

.dashboard-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.tab-button,
.filter-button {
  min-height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.tab-button.is-active,
.filter-button.is-active {
  border-color: rgba(37, 99, 235, 0.42);
  color: #fff;
  background: var(--brand);
}

.dashboard-panel {
  display: none;
  color: var(--muted);
}

.dashboard-panel.is-active {
  display: block;
}

.showcase-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.showcase-frame > img:not(.showcase-illustration) {
  position: relative;
  z-index: 1;
  border-radius: 6px;
  aspect-ratio: 1280 / 707;
  object-fit: cover;
}

.showcase-illustration {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  width: 124px;
  max-width: 24%;
  padding: 10px;
  border: 1px solid rgba(219, 229, 242, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.13);
  pointer-events: none;
}

.showcase-illustration--download {
  width: 112px;
}

.use-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.use-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 20px;
}

.use-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--brand);
  background: var(--brand-soft);
  font-weight: 800;
}

.use-icon .tabler-icon {
  font-size: 22px;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-card {
  min-height: 482px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.pricing-card.is-featured {
  border-color: rgba(37, 99, 235, 0.36);
  box-shadow: 0 22px 70px rgba(37, 99, 235, 0.12);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0 20px;
}

.price strong {
  font-size: 42px;
  line-height: 1;
}

.price span,
.pricing-card p {
  color: var(--muted);
}

.pricing-card ul,
.check-list {
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.pricing-card li,
.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 11px 0;
  color: var(--muted);
}

.pricing-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 13px;
  height: 8px;
  border: 2px solid var(--success);
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
}

.pricing-card .button {
  margin-top: auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border: none;
  border-bottom: 1.5px solid #eef2f6;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: border-color 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.3);
}

.faq-item.is-open {
  border-color: rgba(37, 99, 235, 0.4);
}

.faq-item button {
  width: 100%;
  min-height: 64px;
  border: 0;
  background: transparent;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  font-size: 17px;
  font-weight: 550;
  transition: color 0.3s ease;
}

.faq-item button:hover {
  color: var(--brand);
}

.faq-item button::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231e293b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5v14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  flex: 0 0 auto;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-image 0.3s ease;
}

.faq-item.is-open button::after {
  transform: rotate(45deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5v14'/%3E%3C/svg%3E");
}

.faq-item p {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  transition: max-height 300ms cubic-bezier(0.16, 1, 0.3, 1), opacity 250ms ease, padding 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open p {
  max-height: 300px;
  opacity: 1;
  padding-bottom: 24px;
}

.friendly-grid {
  position: relative;
  overflow: hidden;
  padding: 6px 0;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.friendly-track {
  width: max-content;
  display: flex;
  gap: 16px;
  animation: friendly-scroll 28s linear infinite;
}

.friendly-grid:hover .friendly-track {
  animation-play-state: paused;
}

.friendly-link {
  flex: 0 0 264px;
  min-width: 0;
  min-height: 116px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
  color: var(--text);
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.friendly-link__logo {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.friendly-link__logo img {
  width: auto;
  height: auto;
  max-width: 190px;
  max-height: 48px;
  object-fit: contain;
  transition: transform 200ms ease;
}

.friendly-link__name {
  max-width: 100%;
  overflow: hidden;
  color: #1e293b;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.friendly-link:hover {
  border-color: rgba(37, 99, 235, 0.34);
  background: #f8fbff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.09);
  transform: translateY(-2px);
}

.friendly-link:hover .friendly-link__logo img {
  transform: scale(1.04);
}

.friendly-link:hover .friendly-link__name {
  color: var(--brand-hover);
}

@keyframes friendly-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.partner-card:hover,
.feature-card:hover,
.use-card:hover,
.contact-card:hover,
.download-card:hover {
  border-color: rgba(37, 99, 235, 0.38);
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.09);
}

.partner-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  background: linear-gradient(135deg, var(--accent), var(--brand));
}

.partner-mark .tabler-icon {
  font-size: 22px;
}

.partner-mark--image {
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}

.partner-mark--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.contact-band {
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-band__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.18);
}

.contact-band__icon .tabler-icon {
  font-size: 28px;
}

.partner-cta {
  margin-top: 22px;
}

.contact-band h2 {
  font-size: 30px;
}

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

.contact-card {
  position: relative;
  overflow: hidden;
  min-height: 318px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}

.contact-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.13), transparent 70%);
  pointer-events: none;
}

.contact-card--email {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(255, 106, 0, 0.08)),
    rgba(255, 255, 255, 0.92);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.18);
}

.contact-card__icon .tabler-icon {
  font-size: 25px;
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.contact-card p {
  margin-bottom: 14px;
  color: var(--muted);
}

.contact-card .text-link {
  margin-top: 0;
  word-break: break-word;
}

.contact-handle {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--brand-hover);
  background: var(--brand-soft);
}

.qr-code {
  width: 132px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-top: 18px;
  padding: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.footer-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 40px;
}

.footer-copy {
  color: var(--muted);
  max-width: 360px;
  font-size: 14px;
}

.footer-icp {
  margin-top: 10px;
}

.footer-icp a {
  color: inherit;
}

.footer-icp a:hover {
  color: var(--brand-hover);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.footer-links h3 {
  margin: 0 0 12px;
  font-size: 14px;
}

.footer-links a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--brand-hover);
}

.page-hero {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 150px 0 66px;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 1fr);
  gap: 36px;
  align-items: end;
}

.page-hero h1 {
  font-size: 56px;
}

.page-hero p {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
}

.page-stat {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
}

.page-stat--with-art {
  min-height: 178px;
  padding-right: 132px;
}

.page-stat__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  margin-bottom: 16px;
  color: var(--brand);
  background: var(--brand-soft);
}

.page-stat__icon .tabler-icon {
  font-size: 24px;
}

.page-stat__art {
  position: absolute;
  right: 12px;
  bottom: -12px;
  width: 124px;
  opacity: 0.5;
  pointer-events: none;
}

.page-stat strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 36px;
}

.page-stat .subtle {
  position: relative;
  z-index: 1;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.partner-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-card {
  min-height: 320px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.partner-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.partner-card__identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.partner-card__identity h3 {
  margin: 0 0 2px;
}

.partner-card__identity span {
  color: var(--soft);
  font-size: 13px;
}

.partner-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px dashed #c7d5eb;
  border-radius: 8px;
  margin: 22px 0 16px;
  padding: 12px;
  color: var(--soft);
  background: #f8fbff;
  font-size: 13px;
}

.partner-card__meta strong {
  color: var(--brand-hover);
  letter-spacing: 0.04em;
}

.partner-card__button {
  width: 100%;
  margin-top: auto;
}

.pill {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 8px;
  padding: 0 10px;
  color: var(--brand-hover);
  background: var(--brand-soft);
  font-size: 12px;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--brand);
  font-weight: 800;
}

.download-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.download-card {
  position: relative;
  overflow: hidden;
  min-height: 378px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.download-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.download-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.16);
}

.download-card__icon .tabler-icon {
  font-size: 24px;
}

.download-card.is-muted {
  opacity: 0.72;
}

.version-table {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.version-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
}

.version-row strong {
  color: var(--text);
  font-weight: 700;
  text-align: right;
}

.download-card .button {
  margin-top: auto;
}

.download-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.38);
  backdrop-filter: blur(10px);
}

.download-modal[hidden] {
  display: none;
}

.download-modal__panel {
  position: relative;
  width: min(100%, 400px);
  border: 1px solid rgba(219, 229, 242, 0.95);
  border-radius: 8px;
  padding: 24px 24px 20px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
  text-align: center;
}

.download-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  color: #98a2b3;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.download-modal__close:hover {
  color: var(--text);
  background: #f1f5f9;
}

.download-modal__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  color: var(--brand);
  background: radial-gradient(circle, #dbeafe 0 42%, #eff6ff 43% 68%, #f8fbff 69% 100%);
}

.download-modal__icon svg,
.download-modal__icon .tabler-icon {
  width: 30px;
  height: 30px;
  font-size: 30px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.download-modal h2 {
  margin: 8px 26px 10px;
  font-size: 21px;
  line-height: 1.35;
}

.download-modal.is-complete h2::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 3px;
  margin-right: 8px;
  color: #fff;
  background: #16a34a;
  font-size: 16px;
  vertical-align: 1px;
}

.download-modal__note {
  margin-bottom: 22px;
  color: var(--soft);
  font-size: 14px;
}

.download-modal__stats {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.download-modal__stats strong {
  color: var(--brand);
  font-size: 32px;
  line-height: 1;
}

.download-modal__stats strong span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.download-modal__stats span {
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
}

.download-modal__bar {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: #e2e8f0;
}

.download-modal__bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #8b80ff);
  transition: width 120ms ease;
}

.download-modal__safe {
  display: flex;
  gap: 12px;
  margin: 24px 0;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  padding: 14px;
  text-align: left;
  background: #f8fbff;
}

.download-modal__safe svg,
.download-modal__safe .tabler-icon {
  width: 22px;
  height: 22px;
  font-size: 22px;
  flex: 0 0 auto;
  color: #10b981;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
}

.download-modal__safe p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.download-modal__done {
  min-width: 136px;
  color: var(--text);
  background: #eef2f7;
}

.download-modal__done:disabled {
  opacity: 0.62;
  cursor: not-allowed;
  transform: none;
}

.docs-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
}

.docs-help-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(255, 106, 0, 0.08)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.docs-help-band::after {
  content: "";
  position: absolute;
  inset: auto -24px -46px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.18), transparent 70%);
  pointer-events: none;
}

.docs-help-band__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.18);
}

.docs-help-band__icon .tabler-icon {
  font-size: 30px;
}

.docs-help-band h2 {
  margin-bottom: 6px;
  font-size: 28px;
}

.docs-help-band p {
  max-width: 660px;
  margin-bottom: 0;
}

.docs-help-band .button {
  position: relative;
  z-index: 1;
  min-width: 156px;
}

.docs-nav {
  position: sticky;
  top: 96px;
  align-self: start;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
}

.docs-nav a {
  --docs-nav-icon: url("../assets/icons/tabler/book.svg");
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--muted);
  font-size: 14px;
}

.docs-nav a::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: var(--docs-nav-icon) center / contain no-repeat;
  mask: var(--docs-nav-icon) center / contain no-repeat;
}

.docs-nav a[href="#getting-started"] { --docs-nav-icon: url("../assets/icons/tabler/rocket.svg"); }
.docs-nav a[href="#browser-profiles"] { --docs-nav-icon: url("../assets/icons/tabler/browser.svg"); }
.docs-nav a[href="#proxy-setup"] { --docs-nav-icon: url("../assets/icons/tabler/route.svg"); }
.docs-nav a[href="#team-workspace"] { --docs-nav-icon: url("../assets/icons/tabler/users-group.svg"); }
.docs-nav a[href="#faq"] { --docs-nav-icon: url("../assets/icons/tabler/help-circle.svg"); }

.docs-nav a:hover {
  background: var(--brand-soft);
  color: var(--text);
}

.docs-content {
  display: grid;
  gap: 16px;
}

.doc-card {
  padding: 28px;
  scroll-margin-top: 110px;
}

.doc-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.doc-card__top .section-kicker {
  margin: 0;
}

.doc-card__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--brand);
  background: var(--brand-soft);
}

.doc-card__icon .tabler-icon {
  font-size: 22px;
}

.doc-card h2 {
  font-size: 30px;
}

.doc-card code {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 6px;
  color: var(--brand-hover);
  background: var(--brand-soft);
}

.legal-grid {
  grid-template-columns: 1fr;
  max-width: 860px;
}

.legal-card {
  padding: 28px;
}

.legal-content {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.legal-content[hidden] {
  display: none;
}

.legal-content .legal-card h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.25;
}

.legal-content .legal-card h3 {
  margin: 18px 0 8px;
}

.legal-content .legal-card p {
  color: var(--muted);
}

.legal-content .legal-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.legal-content .legal-card li {
  margin: 8px 0;
}

.legal-note {
  border-left: 4px solid var(--brand);
  padding-left: 16px;
}

@media (max-width: 1040px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.98);
    padding: 16px 20px 22px;
  }

  .menu-open .mobile-menu {
    display: grid;
    gap: 10px;
  }

  .mobile-menu a,
  .mobile-menu .button {
    width: 100%;
    justify-content: flex-start;
  }

  .hero,
  .showcase,
  .page-hero {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 52px;
  }

  .feature-grid,
  .pricing-grid,
  .partner-grid,
  .download-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .use-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .friendly-link {
    flex-basis: 242px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav,
  .hero,
  .section,
  .page-hero,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding-top: 112px;
    gap: 34px;
  }

  h1,
  .page-hero h1 {
    font-size: 38px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 30px;
  }

  .hero p,
  .page-hero p {
    font-size: 16px;
  }

  .hero-proof,
  .feature-grid,
  .pricing-grid,
  .partner-grid,
  .download-grid,
  .contact-grid,
  .use-grid,
  .docs-layout,
  .footer-links,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .friendly-link {
    flex-basis: 220px;
    min-height: 86px;
    padding: 18px 20px;
  }

  .friendly-link__logo img {
    max-height: 42px;
  }

  .friendly-link__name {
    font-size: 20px;
  }

  .floating-status {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .docs-help-band {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 22px;
  }

  .docs-help-band .button {
    width: 100%;
  }

  .identity-card,
  .showcase-illustration {
    display: none;
  }

  .page-stat--with-art {
    min-height: auto;
    padding-right: 24px;
  }

  .page-stat__art {
    width: 104px;
    opacity: 0.22;
  }

  .browser-frame {
    transform: none;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .docs-nav {
    position: static;
  }

  .section {
    padding: 62px 0;
  }
}
