:root {
  --body: #000806;
  --bg-1: #00120d;
  --bg-2: #053d2f;
  --surface: rgba(17, 27, 31, .76);
  --surface-2: rgba(6, 18, 18, .68);
  --border: rgba(211, 235, 226, .1);
  --border-strong: rgba(73, 151, 126, .48);
  --text: #f7fbf8;
  --hint: #9ab1aa;
  --muted: #677b76;
  --pink: #4c967e;
  --pink-2: #5db394;
  --violet: #8b6cff;
  --cyan: #79e8ff;
  --green: #43d7a2;
  --dark: #00100c;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: 1120px;
  --header: 68px;
  --shadow: 0 18px 60px rgba(0, 0, 0, .48);
  --glow: 0 16px 54px rgba(67, 215, 162, .2);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--body);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(980px 620px at 86% 10%, rgba(51, 106, 255, .18), transparent 60%),
    radial-gradient(880px 560px at -12% 38%, rgba(67, 215, 162, .1), transparent 64%),
    linear-gradient(180deg, #080d1a, #000806 58%, #001b14);
}

.backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(247, 237, 245, .05) 1px, transparent 1px);
  background-size: 23px 23px;
  opacity: .34;
  mix-blend-mode: overlay;
}

#petals {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .55;
  mix-blend-mode: screen;
}

img,
svg {
  display: block;
}

svg:not(.flag-symbols):not(.flag svg) {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  appearance: none;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--text);
  color: var(--dark);
  font-weight: 800;
  text-decoration: none;
  transition: top 180ms var(--ease);
}

.skip-link:focus {
  top: 12px;
}

.ip-topline {
  min-height: 24px;
  border-bottom: 1px solid rgba(211, 235, 226, .08);
  background: linear-gradient(90deg, rgba(11, 17, 29, .96), rgba(7, 14, 22, .96));
  color: var(--hint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.ip-topline-inner {
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  white-space: nowrap;
}

.ip-topline strong {
  color: var(--text);
  font-family: "Geist Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
}

.ip-topline span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.ip-topline-status {
  color: #ffb46b;
}

.ip-topline-status.is-protected {
  color: #76e3b2;
}

.ip-topline-status.is-unprotected {
  color: #ff7a7a;
}

.ip-topline-status.is-error {
  color: #ff8c8c;
}

.ip-topline-status.is-loading {
  color: #8fb8ff;
}

.flag-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: calc(100% - 48px);
  max-width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header);
  border-bottom: 1px solid var(--border);
  background: rgba(18, 13, 20, .56);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
}

.site-header.scrolled {
  background: rgba(18, 13, 20, .78);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .24);
}

.nav-shell {
  position: relative;
  min-height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.brand-header {
  gap: 10px;
  font-size: 21px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-icon {
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .3));
}

.brand-word {
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: auto;
  height: 58px;
  max-width: 142px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .34));
}

.brand-name b {
  color: var(--violet);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(17, 27, 31, .78);
  box-shadow: 0 0 0 1px rgba(211, 235, 226, .12) inset;
}

.brand-mark img {
  width: 38px;
  height: 38px;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a,
.nav-dropdown-toggle {
  padding: 9px 13px;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--hint);
  background: transparent;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--text);
  background: rgba(247, 237, 245, .055);
  outline: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 180ms var(--ease);
}

.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu[hidden] {
  display: none;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 20;
  width: 220px;
  display: grid;
  gap: 5px;
  padding: 8px;
  border: 1px solid rgba(211, 235, 226, .12);
  border-radius: 16px;
  background:
    radial-gradient(220px 120px at 20% 0%, rgba(67, 215, 162, .12), transparent 72%),
    rgba(9, 19, 22, .96);
  box-shadow: 0 22px 58px rgba(0, 0, 0, .42);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  transform: translateX(-50%);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 11px;
  border-radius: 10px;
  color: var(--hint);
  font-size: 13px;
  font-weight: 760;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--text);
  background: rgba(67, 215, 162, .13);
}

.nav-auth {
  display: none;
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(73, 151, 126, .42);
  border-radius: var(--radius-sm);
  color: var(--green);
  background: rgba(73, 151, 126, .13);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.lang-switch {
  position: relative;
}

.lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(211, 235, 226, .12);
  border-radius: 50%;
  color: var(--text);
  background: rgba(247, 237, 245, .045);
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}

.lang-button:hover,
.lang-button:focus-visible,
.lang-switch.open .lang-button {
  border-color: rgba(73, 151, 126, .44);
  background: rgba(73, 151, 126, .13);
  outline: none;
}

.lang-button svg {
  width: 19px;
  height: 19px;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  z-index: 10;
  width: 152px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(12, 20, 23, .96);
  box-shadow: var(--shadow);
}

.lang-menu button {
  width: 100%;
  min-height: 34px;
  border: 0;
  border-radius: 10px;
  color: var(--hint);
  background: transparent;
  font-size: 13px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.lang-menu button:hover,
.lang-menu button:focus-visible,
.lang-menu button.is-active {
  color: var(--text);
  background: rgba(73, 151, 126, .16);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: rgba(247, 237, 245, .045);
}

.nav-toggle svg {
  width: 23px;
  height: 23px;
  margin: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.button svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: #f7fbf8;
  background: var(--pink);
  box-shadow: var(--glow);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #57a88d;
  box-shadow: 0 20px 62px rgba(67, 215, 162, .28);
}

.button-trial {
  color: #f7fbf8;
  background: linear-gradient(135deg, var(--pink-2), var(--pink) 56%, var(--violet));
  box-shadow: 0 14px 42px rgba(67, 215, 162, .24);
}

.button-ghost {
  color: var(--text);
  border-color: var(--border);
  background: rgba(247, 237, 245, .045);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(247, 237, 245, .15);
  background: rgba(247, 237, 245, .08);
}

.header-label-mobile {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 0 28px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(520px 430px at 76% 48%, rgba(67, 215, 162, .22), transparent 68%),
    radial-gradient(420px 420px at 88% 34%, rgba(121, 232, 255, .13), transparent 66%),
    radial-gradient(620px 480px at 58% 78%, rgba(67, 215, 162, .08), transparent 72%);
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, #000806 0%, rgba(0, 8, 6, .98) 33%, rgba(0, 8, 6, .52) 52%, rgba(0, 8, 6, .14) 72%, rgba(0, 8, 6, .18) 100%),
    linear-gradient(180deg, rgba(8, 13, 26, .45) 0%, transparent 30%, rgba(0, 27, 20, .36) 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 42px;
  text-align: left;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-status {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 7px 13px;
  border: 1px solid rgba(73, 151, 126, .38);
  border-radius: 999px;
  color: var(--green);
  background: rgba(73, 151, 126, .12);
  font-size: 13px;
  font-weight: 650;
}

.hero-checked {
  color: var(--hint);
  font-size: 13px;
  font-weight: 650;
}

.hero-note .hero-dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

.hero-note-text {
  display: inline;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--text);
  font-size: 46px;
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 800;
}

.hero h1 span {
  color: #91f0cf;
}

.hero-lead {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--hint);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-actions .button {
  min-height: 54px;
  padding-inline: 28px;
  font-size: 15px;
}

.cta-actions {
  justify-content: center;
}

.hero-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  min-height: 360px;
  display: grid;
  place-items: center end;
}

.hero-visual::before {
  display: none;
}

.hero-visual::after {
  display: none;
}

.hero-visual > img {
  display: none;
}

.hero-phone {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 22px;
  width: min(246px, 24vw);
  aspect-ratio: .49;
  margin-right: 104px;
  border: 1px solid rgba(121, 232, 255, .42);
  border-radius: 44px;
  color: rgba(247, 251, 248, .82);
  background:
    linear-gradient(155deg, rgba(7, 19, 26, .96), rgba(2, 8, 14, .98) 46%, rgba(0, 18, 13, .92)),
    radial-gradient(circle at 50% 42%, rgba(139, 108, 255, .2), transparent 42%);
  box-shadow:
    0 0 0 7px rgba(3, 18, 23, .62),
    0 0 40px rgba(121, 232, 255, .24),
    0 0 86px rgba(67, 215, 162, .2),
    34px 42px 88px rgba(0, 0, 0, .56);
  transform: rotate(5deg);
  overflow: hidden;
}

.hero-phone::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 36px;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, .08), transparent 24%),
    radial-gradient(circle at 50% 44%, rgba(67, 215, 162, .12), transparent 46%);
  pointer-events: none;
}

.hero-phone::after {
  content: "";
  position: absolute;
  inset: -18% 56% auto -28%;
  height: 86%;
  background: linear-gradient(90deg, rgba(255, 255, 255, .18), transparent);
  transform: rotate(18deg);
  opacity: .24;
  pointer-events: none;
}

.hero-phone-speaker {
  position: absolute;
  top: 23px;
  left: 50%;
  width: 58px;
  height: 7px;
  border-radius: 999px;
  background: rgba(211, 235, 226, .12);
  transform: translateX(-50%);
}

.hero-phone-logo {
  position: relative;
  z-index: 1;
  width: 106px;
  height: 106px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 18px 30px rgba(139, 108, 255, .26));
}

.hero-phone-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-phone strong {
  position: relative;
  z-index: 1;
  color: rgba(247, 251, 248, .74);
  font-size: 22px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-features {
  position: relative;
  z-index: 2;
  margin-top: 64px;
}

.hero-features .features {
  gap: 14px;
}

.hero-features .feature {
  min-height: 158px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(10, 22, 22, .7);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .3);
}

.hero-features .feature h3 {
  margin-top: 14px;
  font-size: 17px;
}

.hero-features .feature p {
  font-size: 13.5px;
}

.hero-features .icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 38px auto 0;
}

.hero-meta div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(17, 27, 31, .56);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .16);
}

.hero-meta dt {
  margin: 0;
  color: var(--hint);
  font-size: 13px;
  font-weight: 650;
}

.hero-meta dd {
  margin: 6px 0 0;
  color: var(--text);
  font-family: "Geist Mono", Consolas, monospace;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.section {
  padding: 92px 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-head.align-left {
  margin: 0;
  text-align: left;
}

.kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-head h2,
.cta-card h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: 0;
}

.section-head p,
.cta-card p {
  margin: 16px 0 0;
  color: var(--hint);
  font-size: 17px;
}

.glass {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px) saturate(142%);
  -webkit-backdrop-filter: blur(10px) saturate(142%);
  box-shadow: var(--shadow);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature {
  min-height: 252px;
  padding: 26px;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease);
}

.feature:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.icon,
.access-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--pink);
  background: rgba(73, 151, 126, .14);
}

.icon svg,
.access-icon svg {
  width: 23px;
  height: 23px;
}

.feature h3 {
  margin: 19px 0 0;
  font-size: 19px;
  line-height: 1.2;
}

.feature p {
  margin: 10px 0 0;
  color: var(--hint);
  font-size: 14.5px;
}

.auth-methods {
  display: flex;
  flex-wrap: nowrap;
  gap: 7px;
  margin-top: 18px;
}

.auth-methods span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 8px;
  border: 1px solid rgba(73, 151, 126, .28);
  border-radius: 999px;
  color: var(--text);
  background: rgba(73, 151, 126, .12);
  font-size: 12.5px;
  font-weight: 750;
  white-space: nowrap;
}

.comparison-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(780px 420px at 82% 0%, rgba(139, 108, 255, .13), transparent 68%),
    radial-gradient(640px 380px at 12% 44%, rgba(67, 215, 162, .1), transparent 70%),
    rgba(4, 15, 16, .68);
}

.comparison-inner {
  position: relative;
}

.comparison-copy {
  max-width: 730px;
  position: relative;
  z-index: 2;
}

.comparison-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.comparison-copy p {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--hint);
  font-size: 17px;
}

.comparison-art {
  position: absolute;
  top: -118px;
  right: -84px;
  z-index: 1;
  width: clamp(500px, 42vw, 690px);
  height: auto;
  object-fit: contain;
  pointer-events: none;
  opacity: .96;
  filter: saturate(1.08) contrast(1.03) drop-shadow(0 34px 72px rgba(67, 215, 162, .2));
  transform: rotate(-1.5deg);
  mask-image: radial-gradient(ellipse at 58% 48%, #000 0 62%, rgba(0, 0, 0, .78) 75%, transparent 94%);
  -webkit-mask-image: radial-gradient(ellipse at 58% 48%, #000 0 62%, rgba(0, 0, 0, .78) 75%, transparent 94%);
}

.compare-board {
  position: relative;
  z-index: 2;
  margin-top: 72px;
  border: 1px solid rgba(211, 235, 226, .12);
  border-radius: 28px;
  background:
    linear-gradient(90deg, transparent 0 calc(100% - 460px), rgba(247, 251, 248, .035) calc(100% - 460px) calc(100% - 230px), transparent calc(100% - 230px)),
    rgba(5, 16, 18, .56);
  backdrop-filter: blur(12px) saturate(145%);
  -webkit-backdrop-filter: blur(12px) saturate(145%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(180px, 230px) minmax(180px, 230px);
  align-items: center;
  min-height: 64px;
  border-top: 1px solid rgba(211, 235, 226, .12);
}

.compare-row:first-child {
  border-top: 0;
}

.compare-row > * {
  min-width: 0;
  padding: 18px 24px;
}

.compare-head {
  min-height: 74px;
  color: var(--text);
  font-weight: 850;
}

.compare-head > :first-child {
  font-size: 17px;
}

.compare-row > strong {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-align: center;
  background: rgba(247, 251, 248, .055);
  font-weight: 850;
}

.compare-row > :last-child {
  color: var(--hint);
  text-align: center;
}

.compare-row:not(.compare-head) > :first-child {
  color: rgba(247, 251, 248, .84);
}

.compare-head .compare-winner {
  gap: 8px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(180deg, rgba(247, 251, 248, .1), rgba(247, 251, 248, .052));
}

.compare-row:last-child > strong {
  border-radius: 0 0 22px 22px;
}

.compare-check {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #00120d;
  background: var(--green);
  font-size: 13px;
  line-height: 1;
}

.partner-teaser-section {
  position: relative;
  padding-top: 78px;
}

.partner-teasers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.partner-teaser {
  position: relative;
  min-height: 332px;
  padding: 34px 34px 30px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  border-radius: 24px;
  background:
    radial-gradient(420px 260px at 92% 78%, rgba(67, 215, 162, .2), transparent 70%),
    radial-gradient(360px 260px at 68% 10%, rgba(139, 108, 255, .16), transparent 72%),
    rgba(8, 20, 20, .76);
}

.partner-teaser::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, rgba(0, 8, 6, .18), transparent 48%, rgba(0, 0, 0, .2));
}

.partner-teaser-copy {
  position: relative;
  z-index: 2;
  max-width: 58%;
  min-height: 100%;
  display: grid;
  align-content: start;
}

.partner-teaser h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.12;
}

.partner-teaser p {
  margin: 16px 0 0;
  color: var(--hint);
  font-size: 15px;
  line-height: 1.45;
}

.teaser-link {
  min-height: 42px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 76px;
  padding: 0 18px;
  border: 1px solid rgba(67, 215, 162, .32);
  border-radius: 999px;
  color: #91f0cf;
  background: rgba(67, 215, 162, .1);
  font-weight: 800;
  text-decoration: none;
}

.teaser-link:hover,
.teaser-link:focus-visible {
  color: var(--text);
  border-color: rgba(67, 215, 162, .56);
  background: rgba(67, 215, 162, .16);
  outline: none;
}

.partner-teaser img {
  position: absolute;
  right: -58px;
  bottom: -72px;
  z-index: 1;
  width: 58%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  opacity: .95;
  mix-blend-mode: screen;
  filter: saturate(1.06) contrast(1.04);
  mask-image: radial-gradient(circle at 50% 50%, #000 0 62%, rgba(0, 0, 0, .68) 74%, transparent 88%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0 62%, rgba(0, 0, 0, .68) 74%, transparent 88%);
}

.home-articles-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 360px at 12% 2%, rgba(121, 232, 255, .08), transparent 72%),
    radial-gradient(640px 360px at 88% 92%, rgba(67, 215, 162, .09), transparent 72%);
}

.home-articles-section .section-head {
  max-width: 780px;
}

.home-articles-grid {
  margin-top: 34px;
}

.home-articles-section .blog-article-card {
  min-height: 100%;
}

.home-articles-footer {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.home-knowledge-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
  padding: 26px;
  border: 1px solid rgba(121, 232, 255, .18);
  border-radius: 24px;
  background:
    radial-gradient(420px 180px at 10% 0%, rgba(67, 215, 162, .16), transparent 72%),
    radial-gradient(360px 200px at 92% 20%, rgba(121, 232, 255, .1), transparent 70%),
    rgba(5, 16, 18, .68);
}

.home-knowledge-callout h3 {
  margin: 8px 0 0;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.08;
}

.home-knowledge-callout p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--hint);
  font-size: 16px;
}

.partner-page {
  min-height: 100vh;
}

.partner-page .site-header {
  background: rgba(18, 13, 20, .72);
}

.subhero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 58px;
}

.subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(680px 420px at 76% 40%, rgba(67, 215, 162, .18), transparent 68%),
    radial-gradient(540px 380px at 20% 10%, rgba(139, 108, 255, .14), transparent 70%);
}

.subhero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: 46px;
}

.subhero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: 0;
}

.subhero p {
  max-width: 580px;
  margin: 22px 0 0;
  color: var(--hint);
  font-size: 19px;
}

.subhero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.subhero-art {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
}

.subhero-art img {
  width: min(520px, 100%);
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: saturate(1.04) contrast(1.03);
  mask-image: radial-gradient(circle at 50% 50%, #000 0 64%, rgba(0, 0, 0, .78) 76%, transparent 91%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0 64%, rgba(0, 0, 0, .78) 76%, transparent 91%);
}

.affiliate-steps {
  border-radius: 32px;
  background:
    radial-gradient(720px 420px at 50% 0%, rgba(67, 215, 162, .12), transparent 70%),
    rgba(9, 17, 20, .82);
}

.steps-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 74px 1fr;
  gap: 38px;
  align-items: center;
}

.steps-layout::before {
  content: "";
  position: absolute;
  top: 88px;
  bottom: 88px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(67, 215, 162, .4), transparent);
}

.step-node {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  color: var(--green);
  background: rgba(67, 215, 162, .12);
  font-family: "Geist Mono", Consolas, monospace;
  font-size: 20px;
  font-weight: 800;
}

.step-copy,
.step-visual {
  min-height: 245px;
  display: grid;
  align-content: center;
}

.step-copy h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.12;
}

.step-copy p {
  max-width: 390px;
  margin: 14px 0 0;
  color: var(--hint);
}

.step-visual {
  justify-items: center;
}

.mock-window,
.mock-phone,
.mock-laptop {
  position: relative;
  border: 1px solid rgba(211, 235, 226, .2);
  background: rgba(247, 251, 248, .03);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .24);
}

.mock-window {
  width: min(360px, 100%);
  height: 210px;
  border-radius: 24px;
}

.mock-window::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 22px;
  width: 58px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--violet));
}

.mock-window::after {
  content: "NovaBooster partners";
  position: absolute;
  inset: 72px 32px auto;
  color: var(--text);
  font-weight: 800;
}

.mock-phone {
  width: 150px;
  height: 260px;
  border-radius: 30px;
}

.mock-phone::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  width: 44px;
  height: 7px;
  border-radius: 999px;
  background: rgba(211, 235, 226, .22);
  transform: translateX(-50%);
}

.mock-phone::after {
  content: "link copied";
  position: absolute;
  left: 24px;
  right: -54px;
  top: 102px;
  padding: 11px 13px;
  border-radius: 14px;
  color: var(--text);
  background: linear-gradient(135deg, var(--pink), var(--violet));
  font-size: 13px;
  font-weight: 800;
}

.mock-laptop {
  width: min(360px, 100%);
  height: 205px;
  border-radius: 24px 24px 10px 10px;
}

.mock-laptop::before {
  content: "";
  position: absolute;
  left: 56px;
  right: 56px;
  bottom: 48px;
  height: 110px;
  background: linear-gradient(135deg, rgba(67, 215, 162, .2), rgba(139, 108, 255, .88));
  clip-path: polygon(0 82%, 24% 58%, 40% 66%, 62% 34%, 78% 42%, 100% 0, 100% 100%, 0 100%);
}

.mock-laptop::after {
  content: "";
  position: absolute;
  left: -34px;
  right: -34px;
  bottom: -15px;
  height: 20px;
  border: 1px solid rgba(211, 235, 226, .2);
  border-radius: 999px;
  background: rgba(247, 251, 248, .04);
}

.partner-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-card {
  min-height: 330px;
  padding: 28px;
}

.proof-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.proof-card p {
  color: var(--hint);
}

.stars {
  display: flex;
  gap: 5px;
  margin-top: 28px;
  color: #0fd68d;
  font-size: 30px;
}

.review-box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(247, 251, 248, .045);
}

.affiliate-band {
  padding: 58px 0;
  background: linear-gradient(135deg, rgba(73, 151, 126, .98), rgba(139, 108, 255, .82));
  text-align: center;
}

.affiliate-band h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
}

.affiliate-band .button {
  margin-top: 22px;
  background: rgba(247, 251, 248, .95);
  color: #00120d;
}

.affiliate-benefits {
  background: rgba(9, 17, 20, .72);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
}

.benefit {
  padding: 10px 18px;
}

.benefit-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  color: var(--green);
  background: rgba(67, 215, 162, .12);
}

.benefit-icon svg {
  width: 34px;
  height: 34px;
}

.benefit h3 {
  margin: 0;
  font-size: 20px;
}

.benefit p {
  color: var(--hint);
}

.partner-final {
  padding: 88px 0 94px;
  overflow: hidden;
  text-align: center;
}

.partner-final p {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--hint);
}

.partner-final .subhero-actions {
  justify-content: center;
}

.partner-final img {
  width: min(560px, 88vw);
  max-width: 100%;
  height: auto;
  margin: 30px auto 0;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: screen;
  mask-image: radial-gradient(circle at 50% 50%, #000 0 64%, rgba(0, 0, 0, .78) 76%, transparent 91%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0 64%, rgba(0, 0, 0, .78) 76%, transparent 91%);
}

.business-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 76px 0;
}

.business-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(680px 440px at 74% 44%, rgba(139, 108, 255, .16), transparent 70%),
    radial-gradient(620px 420px at 18% 42%, rgba(67, 215, 162, .12), transparent 72%),
    rgba(18, 17, 23, .58);
}

.business-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(380px, 1.18fr);
  align-items: center;
  gap: 64px;
}

.fusion-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 750;
}

.fusion-mark strong {
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(67, 215, 162, .88), rgba(139, 108, 255, .6));
  box-shadow: 0 10px 34px rgba(67, 215, 162, .2);
}

.business-copy h1 {
  margin: 34px 0 0;
  font-size: clamp(44px, 5vw, 66px);
  line-height: 1.04;
}

.business-copy p {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--text);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.34;
}

.business-scroll {
  margin-top: 36px;
  min-width: 280px;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(73, 151, 126, .95), rgba(139, 108, 255, .72));
}

.business-hero-art {
  min-height: 390px;
  display: grid;
  place-items: center;
}

.business-hero-art img {
  width: min(620px, 100%);
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: saturate(1.08) contrast(1.05);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0 66%, rgba(0, 0, 0, .72) 78%, transparent 92%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0 66%, rgba(0, 0, 0, .72) 78%, transparent 92%);
}

.business-cards-section {
  background:
    radial-gradient(640px 360px at 22% 30%, rgba(67, 215, 162, .09), transparent 72%),
    rgba(18, 17, 23, .5);
}

.business-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.business-feature {
  position: relative;
  min-height: 278px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-radius: 24px;
  background:
    radial-gradient(260px 170px at 22% 18%, rgba(139, 108, 255, .18), transparent 70%),
    radial-gradient(260px 170px at 84% 86%, rgba(67, 215, 162, .12), transparent 70%),
    rgba(35, 32, 43, .8);
  box-shadow: none;
}

.business-plus {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(211, 235, 226, .3);
  border-radius: 50%;
  color: rgba(247, 251, 248, .72);
  background: transparent;
  cursor: default;
  font-size: 18px;
  line-height: 1;
}

.business-feature-icon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  color: #c9baff;
  opacity: .92;
  border-radius: 28px;
  background: rgba(247, 251, 248, .035);
}

.business-feature-icon svg {
  width: 58px;
  height: 58px;
  stroke-width: 1.55;
}

.business-feature h3 {
  margin: 34px 0 0;
  font-size: 20px;
  line-height: 1.24;
}

.business-feature p {
  margin: 12px 0 0;
  color: var(--hint);
  font-size: 14.5px;
  line-height: 1.42;
}

.business-scenarios {
  background: rgba(22, 20, 25, .66);
}

.business-scenarios h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
}

.business-toggle {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
}

.business-toggle button {
  border: 0;
  color: rgba(247, 251, 248, .48);
  background: transparent;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.business-toggle button.is-active {
  color: var(--text);
}

.toggle-shell {
  position: relative;
  width: 46px;
  height: 24px;
  border-radius: 999px;
  background: rgba(139, 108, 255, .2);
}

.toggle-shell span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 220ms var(--ease);
}

.business-scenarios.is-russia .toggle-shell span {
  transform: translateX(22px);
}

.business-scenario-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 86px;
  margin-top: 66px;
}

.business-scenario-panel[hidden] {
  display: none;
}

.business-scenario-panel article {
  min-height: 146px;
  padding: 26px 0;
  border-top: 1px solid rgba(211, 235, 226, .22);
}

.business-scenario-panel p {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.32;
}

.business-scenario-cta {
  margin-top: 46px;
}

.business-request {
  scroll-margin-top: calc(var(--header) + 28px);
  background: linear-gradient(180deg, rgba(15, 23, 42, .48), rgba(9, 17, 20, .94));
}

.business-form-card {
  max-width: 840px;
  margin-inline: auto;
  padding: 46px;
  background: rgba(33, 42, 66, .72);
}

.business-form {
  display: grid;
  gap: 22px;
}

.business-form label {
  display: grid;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
}

.business-form input,
.business-form textarea {
  width: 100%;
  border: 1px solid rgba(247, 251, 248, .72);
  border-radius: 16px;
  color: var(--text);
  background: rgba(247, 251, 248, .035);
  padding: 15px 17px;
  outline: none;
}

.business-form textarea {
  resize: vertical;
}

.business-form input:focus,
.business-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(67, 215, 162, .12);
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice-row label {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(247, 251, 248, .14);
  border-radius: 10px;
  color: var(--hint);
  background: rgba(247, 251, 248, .055);
  font-size: 13px;
}

.choice-row input {
  width: auto;
  accent-color: var(--green);
}

.business-form .button {
  width: fit-content;
  min-width: 210px;
  justify-content: space-between;
}

.business-page .site-footer {
  margin-top: 0;
}

.ip-page {
  min-height: 100vh;
}

.ip-page .site-header {
  background: rgba(18, 13, 20, .74);
}

.ip-page main {
  overflow: hidden;
}

.ip-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 30px;
}

.ip-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(800px 520px at 76% 20%, rgba(67, 215, 162, .18), transparent 62%),
    radial-gradient(740px 480px at 12% 90%, rgba(121, 232, 255, .09), transparent 66%),
    radial-gradient(460px 300px at 26% 20%, rgba(139, 108, 255, .08), transparent 68%);
}

.ip-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 8, 6, .18), rgba(0, 8, 6, .42) 56%, rgba(0, 8, 6, .78)),
    radial-gradient(620px 620px at 65% 18%, rgba(67, 215, 162, .1), transparent 70%);
}

.ip-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: 28px;
}

.ip-copy {
  display: grid;
  align-content: start;
  justify-items: start;
}

.ip-copy h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(40px, 4.9vw, 66px);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.ip-copy p {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--hint);
  font-size: 18px;
}

.ip-status-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: min(100%, 560px);
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(211, 235, 226, .12);
  border-radius: 22px;
  background:
    radial-gradient(220px 120px at 4% 0%, rgba(67, 215, 162, .1), transparent 68%),
    rgba(9, 17, 20, .74);
}

.ip-status-card strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
}

.ip-status-card p {
  margin: 6px 0 0;
  color: var(--hint);
  font-size: 14px;
}

.ip-status-dot {
  position: relative;
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--hint);
  box-shadow: 0 0 0 4px rgba(154, 177, 170, .08);
}

.ip-status-card.is-loading .ip-status-dot {
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(121, 232, 255, .12);
  animation: ip-status-pulse 1.2s ease-in-out infinite;
}

.ip-status-card.is-protected {
  border-color: rgba(67, 215, 162, .22);
  background:
    radial-gradient(220px 120px at 4% 0%, rgba(67, 215, 162, .18), transparent 68%),
    rgba(8, 24, 20, .84);
}

.ip-status-card.is-protected .ip-status-dot {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(67, 215, 162, .12);
}

.ip-status-card.is-unprotected {
  border-color: rgba(255, 188, 102, .22);
  background:
    radial-gradient(220px 120px at 4% 0%, rgba(255, 188, 102, .15), transparent 68%),
    rgba(24, 18, 8, .84);
}

.ip-status-card.is-unprotected .ip-status-dot {
  background: #ffbc66;
  box-shadow: 0 0 0 4px rgba(255, 188, 102, .12);
}

.ip-status-card.is-error {
  border-color: rgba(255, 122, 122, .24);
  background:
    radial-gradient(220px 120px at 4% 0%, rgba(255, 122, 122, .12), transparent 68%),
    rgba(25, 12, 12, .84);
}

.ip-status-card.is-error .ip-status-dot {
  background: #ff7a7a;
  box-shadow: 0 0 0 4px rgba(255, 122, 122, .1);
}

.ip-refresh {
  margin-top: 16px;
  min-height: 50px;
  padding-inline: 22px;
}

.ip-panel {
  position: relative;
  min-width: 0;
  display: grid;
  gap: 16px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(211, 235, 226, .12);
  border-radius: 28px;
  background:
    radial-gradient(360px 220px at 78% 0%, rgba(67, 215, 162, .12), transparent 70%),
    radial-gradient(320px 180px at 10% 100%, rgba(121, 232, 255, .08), transparent 72%),
    rgba(10, 19, 23, .8);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42), 0 0 0 1px rgba(67, 215, 162, .06) inset;
}

.ip-panel::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .06), transparent 22%),
    radial-gradient(260px 150px at 50% 12%, rgba(67, 215, 162, .11), transparent 74%);
  opacity: .85;
}

.ip-panel > * {
  position: relative;
  z-index: 1;
}

.ip-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--hint);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ip-panel-head strong {
  color: var(--text);
  font-family: "Geist Mono", Consolas, monospace;
  font-size: 16px;
  line-height: 1.2;
  text-align: right;
  word-break: break-word;
}

.ip-map {
  position: relative;
  height: 390px;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(125, 145, 191, .18);
  border-radius: 24px;
  background:
    radial-gradient(640px 340px at 34% 28%, rgba(140, 177, 255, .12), transparent 66%),
    radial-gradient(560px 300px at 72% 72%, rgba(94, 131, 255, .08), transparent 70%),
    linear-gradient(180deg, #fbfdff, #eef4fb);
  box-shadow:
    0 24px 70px rgba(16, 27, 45, .16),
    inset 0 0 0 1px rgba(255, 255, 255, .7);
}

.ip-map-stage,
.ip-map-fallback {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}

.ip-map-stage {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(680px 360px at 28% 24%, rgba(129, 167, 255, .22), transparent 64%),
    radial-gradient(540px 280px at 76% 72%, rgba(114, 182, 255, .12), transparent 68%),
    linear-gradient(180deg, #fbfdff, #edf3fb 68%, #e8eff9);
}

.ip-map-stage .leaflet-container {
  width: 100%;
  height: 100%;
  min-height: 390px;
  background: #061018;
  color: var(--text);
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ip-map-stage .leaflet-tile {
  filter: saturate(.86) brightness(.86) contrast(1.03);
}

.ip-map-stage .leaflet-marker-icon,
.ip-map-stage .leaflet-marker-shadow {
  filter: none;
}

.ip-map-stage .leaflet-control-zoom {
  border: 0;
  box-shadow: none;
}

.ip-map-stage .leaflet-control-zoom a {
  width: 32px;
  height: 32px;
  margin-bottom: 6px;
  border: 1px solid rgba(211, 235, 226, .12);
  border-radius: 12px;
  color: var(--text);
  background: rgba(10, 20, 24, .92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.ip-map-stage .leaflet-control-zoom a:hover,
.ip-map-stage .leaflet-control-zoom a:focus-visible {
  border-color: rgba(67, 215, 162, .34);
  background: rgba(18, 36, 34, .96);
  outline: none;
}

.ip-map-stage .leaflet-control-attribution {
  border-radius: 12px 0 0 0;
  background: rgba(7, 15, 20, .72);
  color: rgba(247, 251, 248, .68);
}

.ip-map-stage .leaflet-control-attribution a {
  color: #76e3b2;
}

.ip-map-tooltip {
  border: 1px solid rgba(211, 235, 226, .14);
  border-radius: 12px;
  background: rgba(8, 17, 21, .94);
  color: var(--text);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .32);
}

.ip-map-tooltip.leaflet-tooltip-top::before {
  border-top-color: rgba(8, 17, 21, .94);
}

.ip-map-marker {
  position: relative;
  width: 40px !important;
  height: 40px !important;
  margin: -20px 0 0 -20px;
  border: 0;
  background: transparent;
}

.ip-map-marker::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: linear-gradient(180deg, #9cf1c9, #45c58e);
  box-shadow: 0 0 0 8px rgba(69, 197, 142, .1), 0 16px 24px rgba(0, 0, 0, .38);
}

.ip-map-marker::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: #061419;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .18);
}

.ip-map-stage svg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  user-select: none;
  pointer-events: none;
}

.ip-map-grid-layer {
  mix-blend-mode: multiply;
}

.ip-map-grid-line {
  stroke: rgba(140, 155, 188, .24);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 4 10;
}

.ip-map-world-layer {
  filter: saturate(1.03);
}

.ip-map-world-country {
  fill: none;
  stroke: rgba(130, 151, 198, .68);
  stroke-width: 1.12;
  vector-effect: non-scaling-stroke;
}

.ip-map-highlight-glow {
  fill: rgba(92, 128, 255, .38);
  filter: url(#nbMapCountryShadow);
  fill-rule: evenodd;
}

.ip-map-highlight-fill {
  fill: url(#nbMapCountryFill);
  stroke: rgba(55, 84, 225, .95);
  stroke-width: 2.1;
  filter: url(#nbMapCountryShadow);
  vector-effect: non-scaling-stroke;
  paint-order: stroke fill;
  fill-rule: evenodd;
}

.ip-map-pin-group {
  filter: url(#nbMapPinShadow);
}

.ip-map-pin-halo {
  fill: rgba(233, 107, 107, .24);
  stroke: rgba(255, 255, 255, .7);
  stroke-width: 2;
}

.ip-map-pin-shape {
  fill: #ef6464;
  stroke: rgba(255, 255, 255, .94);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.ip-map-pin-core {
  fill: #fff;
}

.ip-map-ring {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(118, 227, 178, .38);
  box-shadow: 0 0 0 12px rgba(118, 227, 178, .08);
}

.ip-map-overlay {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 450;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(128, 149, 194, .16);
  border-radius: 16px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 16px 42px rgba(26, 42, 73, .11);
  backdrop-filter: blur(12px) saturate(140%);
  pointer-events: none;
}

.ip-map-overlay-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: #5d79ff;
  background: rgba(93, 121, 255, .08);
  font-family: "Geist Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.ip-map-overlay-copy strong {
  display: block;
  color: #1d2a45;
  font-size: 14px;
  line-height: 1.15;
}

.ip-map-overlay-copy small {
  display: block;
  margin-top: 4px;
  color: #6d7f9f;
  font-size: 12px;
}

.ip-map::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
  pointer-events: none;
}

.ip-map-loading {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(133, 152, 191, .14);
  border-radius: 14px;
  color: #6c7b95;
  font-size: 13px;
  background: rgba(255, 255, 255, .74);
  backdrop-filter: blur(12px) saturate(140%);
  pointer-events: none;
}

.ip-map-loading[hidden] {
  display: none !important;
}

.ip-location-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 15px;
  font-weight: 750;
}

.ip-location-line span {
  min-width: 34px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(67, 215, 162, .2);
  border-radius: 10px;
  color: var(--green);
  background: rgba(67, 215, 162, .08);
  font-family: "Geist Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}

.ip-details-section {
  padding-top: 20px;
}

.ip-details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ip-detail {
  min-height: 110px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px;
}

.ip-detail span {
  color: var(--hint);
  font-size: 13px;
  font-weight: 750;
}

.ip-detail strong {
  color: var(--text);
  font-size: 18px;
  line-height: 1.2;
  word-break: break-word;
}

.ip-subscribe-section {
  padding-top: 20px;
}

.ip-subscribe {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 32px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(700px 240px at 18% 0%, rgba(67, 215, 162, .18), transparent 72%),
    radial-gradient(480px 220px at 100% 0%, rgba(139, 108, 255, .12), transparent 64%),
    var(--surface);
  box-shadow: var(--glow);
}

.ip-subscribe h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.ip-subscribe p {
  max-width: 670px;
  margin: 16px 0 0;
  color: var(--hint);
  font-size: 17px;
}

.ip-subscribe .button {
  flex: 0 0 auto;
  min-width: 220px;
  min-height: 54px;
}

.ip-article-section {
  padding-top: 18px;
}

.ip-article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ip-article-card {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(17, 27, 31, .78);
}

.ip-article-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
}

.ip-article-card p {
  margin: 0;
  color: var(--hint);
  font-size: 15px;
}

.ip-page .site-footer {
  margin-top: 0;
}

.ip-page .app-transition-card {
  gap: 8px;
}

.blog-page main {
  overflow: hidden;
}

.blog-hero {
  position: relative;
  padding: 86px 0 38px;
  overflow: hidden;
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: -28% -12% auto -12%;
  height: 680px;
  z-index: -1;
  background:
    radial-gradient(560px 360px at 18% 28%, rgba(67, 215, 162, .2), transparent 70%),
    radial-gradient(620px 360px at 86% 16%, rgba(121, 232, 255, .12), transparent 72%),
    radial-gradient(420px 260px at 66% 72%, rgba(139, 108, 255, .1), transparent 76%);
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: 44px;
}

.blog-hero-copy {
  max-width: 640px;
}

.blog-hero-copy h1 {
  margin: 18px 0 0;
  font-size: clamp(44px, 6vw, 76px);
  line-height: .96;
  letter-spacing: 0;
}

.blog-hero-copy p {
  margin: 22px 0 0;
  color: var(--hint);
  font-size: clamp(17px, 1.7vw, 20px);
}

.blog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.blog-hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  margin: 0;
  border-radius: 28px;
}

.blog-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 8, 6, .78), transparent 28%),
    linear-gradient(180deg, transparent 72%, rgba(0, 8, 6, .82));
}

.blog-hero-visual img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .52);
}

.blog-featured-section {
  padding-top: 34px;
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 30px;
  padding: 34px;
  border-color: rgba(73, 151, 126, .34);
  background:
    radial-gradient(620px 240px at 12% 0%, rgba(67, 215, 162, .18), transparent 72%),
    radial-gradient(420px 260px at 100% 20%, rgba(139, 108, 255, .1), transparent 66%),
    rgba(17, 27, 31, .76);
}

.blog-featured h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.02;
}

.blog-featured p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--hint);
  font-size: 17px;
}

.blog-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.blog-stat {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(211, 235, 226, .1);
  border-radius: 18px;
  background: rgba(4, 16, 15, .54);
}

.blog-stat strong {
  font-family: "Geist Mono", Consolas, monospace;
  color: var(--green);
  font-size: 24px;
}

.blog-stat span {
  color: var(--hint);
  font-size: 13px;
  font-weight: 700;
}

.blog-list-section {
  padding-top: 70px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.blog-article-card {
  overflow: hidden;
  min-height: 418px;
  display: grid;
  grid-template-rows: 138px 1fr;
  border-radius: 22px;
  background: rgba(17, 27, 31, .74);
}

.blog-card-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(180px 120px at 20% 10%, color-mix(in srgb, var(--accent) 40%, transparent), transparent 72%),
    radial-gradient(180px 120px at 86% 92%, color-mix(in srgb, var(--accent-2) 32%, transparent), transparent 72%),
    linear-gradient(135deg, rgba(5, 26, 24, .96), rgba(11, 15, 27, .96));
}

.blog-card-visual::before,
.blog-card-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid color-mix(in srgb, var(--accent) 36%, transparent);
  border-radius: 18px;
}

.blog-card-visual::after {
  inset: auto 18px 20px;
  height: 2px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent), color-mix(in srgb, var(--accent-2) 70%, #ffffff), transparent);
  box-shadow: 0 0 24px color-mix(in srgb, var(--accent) 44%, transparent);
}

.blog-card-visual span {
  position: absolute;
  left: 22px;
  top: 20px;
  color: rgba(247, 251, 248, .86);
  font-family: "Geist Mono", Consolas, monospace;
  font-size: 14px;
  font-weight: 800;
}

.blog-card-icon {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 251, 248, .14);
  border-radius: 16px;
  color: var(--text);
  background: rgba(247, 251, 248, .075);
}

.blog-card-icon svg {
  width: 22px;
  height: 22px;
}

.blog-card-body {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 23px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--hint);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-card-meta span:first-child {
  color: color-mix(in srgb, var(--accent) 78%, #ffffff);
}

.blog-article-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
}

.blog-article-card p {
  margin: 0;
  color: var(--hint);
  font-size: 15px;
}

.blog-card-link {
  align-self: end;
  width: fit-content;
  margin-top: 6px;
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.blog-card-link:hover,
.blog-card-link:focus-visible {
  color: var(--green);
  outline: none;
}

.blog-editor-note {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(121, 232, 255, .18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(121, 232, 255, .08), rgba(67, 215, 162, .08)),
    rgba(5, 16, 18, .62);
}

.blog-editor-note h3 {
  margin: 0;
  font-size: 22px;
}

.blog-editor-note p {
  margin: 10px 0 0;
  color: var(--hint);
}

.blog-subscribe-section {
  padding-top: 44px;
}

.blog-subscribe {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 34px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(600px 240px at 8% 0%, rgba(67, 215, 162, .18), transparent 70%),
    radial-gradient(360px 260px at 94% 10%, rgba(121, 232, 255, .1), transparent 72%),
    var(--surface);
}

.blog-subscribe h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
}

.blog-subscribe p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--hint);
  font-size: 17px;
}

.blog-article-card.has-thumb {
  grid-template-rows: 172px 1fr;
}

.blog-article-card.has-thumb .blog-card-visual {
  background: #041311;
}

.blog-article-card.has-thumb .blog-card-visual::before {
  inset: 0;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(1, 11, 10, .08), rgba(1, 11, 10, .42));
  z-index: 1;
}

.blog-article-card.has-thumb .blog-card-visual::after {
  z-index: 2;
  inset: auto 18px 18px;
}

.blog-card-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.blog-card-number {
  z-index: 3;
}

.blog-image-brand {
  position: absolute;
  top: auto;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(247, 251, 248, .12);
  border-radius: 999px;
  background: rgba(4, 14, 15, .72);
  backdrop-filter: blur(16px);
  color: var(--text);
  font-family: var(--font-main);
  pointer-events: none;
}

.blog-image-brand img {
  display: block;
  width: 22px;
  height: 24px;
  object-fit: contain;
}

.blog-image-brand b {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
}

.article-page main {
  overflow: hidden;
}

.article-hero {
  position: relative;
  padding: 90px 0 36px;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 34px;
  align-items: center;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hint);
  font-weight: 800;
  text-decoration: none;
}

.article-back:hover,
.article-back:focus-visible {
  color: var(--green);
  outline: none;
}

.article-meta-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--hint);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.article-meta-line span:first-child {
  color: var(--green);
}

.article-hero-copy h1 {
  margin: 16px 0 0;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: .96;
  letter-spacing: 0;
}

.article-hero-copy p {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--hint);
  font-size: clamp(17px, 1.55vw, 20px);
}

.article-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.article-hero-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(121, 232, 255, .16);
  border-radius: 28px;
  background: rgba(5, 16, 18, .72);
  box-shadow: var(--shadow-strong);
}

.article-hero-visual > img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.article-hero-visual .blog-image-brand {
  left: 22px;
  bottom: 22px;
}

.article-hero-visual .blog-image-brand img {
  width: 22px;
  height: 24px;
  min-height: 0;
  object-fit: contain;
}

.article-content-section {
  padding-top: 18px;
}

.knowledge-article-page .article-hero-grid {
  grid-template-columns: minmax(0, 820px);
}

.knowledge-article-page .article-hero-copy,
.knowledge-article-page .article-hero-copy h1,
.knowledge-article-page .article-hero-copy p {
  max-width: 820px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 20px;
  align-items: start;
}

.article-body {
  padding: 28px;
}

.article-body section + section {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(247, 251, 248, .08);
}

.article-body h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.08;
}

.article-body p {
  margin: 14px 0 0;
  color: var(--hint);
  font-size: 17px;
  line-height: 1.6;
}

.article-aside {
  position: sticky;
  top: calc(var(--header) + 18px);
  display: grid;
  gap: 18px;
}

.article-cta {
  padding: 24px;
}

.article-cta h2 {
  margin: 10px 0 0;
  font-size: 26px;
  line-height: 1.06;
}

.article-cta p {
  margin: 12px 0 0;
  color: var(--hint);
}

.related-section {
  padding-top: 44px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.related-card {
  overflow: hidden;
  display: grid;
  gap: 12px;
  padding: 0 0 20px;
  text-decoration: none;
}

.related-card img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.related-card span,
.related-card strong {
  padding: 0 20px;
}

.related-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.related-card strong {
  color: var(--text);
  font-size: 18px;
  line-height: 1.15;
}

.knowledge-page main,
.knowledge-article-page main {
  overflow: hidden;
}

.knowledge-hero {
  position: relative;
  padding: 92px 0 42px;
  overflow: hidden;
}

.knowledge-hero::before {
  content: "";
  position: absolute;
  inset: -26% -12% auto -12%;
  height: 720px;
  z-index: -1;
  background:
    radial-gradient(620px 360px at 18% 18%, rgba(67, 215, 162, .2), transparent 72%),
    radial-gradient(560px 340px at 88% 18%, rgba(121, 232, 255, .13), transparent 72%),
    radial-gradient(460px 300px at 68% 74%, rgba(139, 108, 255, .1), transparent 72%);
}

.knowledge-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 42px;
  align-items: center;
}

.knowledge-hero-copy {
  max-width: 760px;
}

.knowledge-hero-copy h1 {
  margin: 18px 0 0;
  font-size: clamp(44px, 6vw, 76px);
  line-height: .96;
  letter-spacing: 0;
}

.knowledge-hero-copy p {
  margin: 22px 0 0;
  color: var(--hint);
  font-size: clamp(17px, 1.7vw, 20px);
}

.knowledge-hero-visual {
  margin: 0;
  min-height: 460px;
  display: grid;
  place-items: center;
}

.knowledge-device {
  position: relative;
  width: min(560px, 100%);
  min-height: 430px;
  padding: 28px;
  border: 1px solid rgba(211, 235, 226, .12);
  border-radius: 32px;
  background:
    radial-gradient(420px 260px at 20% 10%, rgba(67, 215, 162, .2), transparent 72%),
    radial-gradient(320px 260px at 92% 8%, rgba(121, 232, 255, .14), transparent 72%),
    linear-gradient(180deg, rgba(15, 28, 31, .9), rgba(4, 12, 12, .96));
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.knowledge-device::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(211, 235, 226, .08);
  border-radius: 24px;
  pointer-events: none;
}

.knowledge-device::after {
  content: "";
  position: absolute;
  width: 320px;
  aspect-ratio: 1;
  right: -120px;
  bottom: -120px;
  border: 1px solid rgba(121, 232, 255, .12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 232, 255, .12), transparent 66%);
}

.knowledge-device-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 850;
}

.knowledge-device-head img {
  width: 54px;
  height: auto;
}

.knowledge-device-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.knowledge-device-flow span {
  min-height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(211, 235, 226, .1);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(247, 251, 248, .06), rgba(247, 251, 248, .02)),
    rgba(4, 16, 16, .72);
  color: var(--text);
  font-weight: 850;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025);
}

.knowledge-device-flow span:nth-child(2),
.knowledge-device-flow span:nth-child(3) {
  transform: translateY(16px);
}

.knowledge-device-panel {
  position: relative;
  z-index: 1;
  margin-top: 46px;
  padding: 22px;
  border: 1px solid rgba(67, 215, 162, .22);
  border-radius: 24px;
  background: rgba(4, 16, 15, .72);
}

.knowledge-device-panel strong {
  display: block;
  font-size: 18px;
}

.knowledge-device-panel p {
  margin: 10px 0 0;
  color: var(--hint);
}

.knowledge-featured-section {
  padding-top: 30px;
}

.knowledge-featured {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 34px;
  border-color: rgba(67, 215, 162, .28);
  background:
    radial-gradient(520px 220px at 12% 0%, rgba(67, 215, 162, .18), transparent 72%),
    radial-gradient(460px 220px at 100% 8%, rgba(121, 232, 255, .1), transparent 72%),
    rgba(17, 27, 31, .76);
}

.knowledge-featured h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.04;
}

.knowledge-featured p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--hint);
  font-size: 17px;
}

.knowledge-list-section {
  padding-top: 72px;
}

.knowledge-toc {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid rgba(121, 232, 255, .16);
  border-radius: 26px;
  background:
    radial-gradient(520px 260px at 10% 0%, rgba(67, 215, 162, .14), transparent 72%),
    radial-gradient(420px 260px at 100% 10%, rgba(121, 232, 255, .08), transparent 72%),
    rgba(17, 27, 31, .72);
}

.knowledge-toc-group {
  display: grid;
  gap: 8px;
}

.knowledge-toc-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 10px 14px;
  border: 1px solid rgba(211, 235, 226, .08);
  border-radius: 16px;
  color: var(--text);
  background: rgba(247, 251, 248, .035);
  text-decoration: none;
}

.knowledge-toc-row span {
  color: var(--green);
  font-family: "Geist Mono", Consolas, monospace;
  font-size: 13px;
  font-weight: 900;
}

.knowledge-toc-row strong {
  font-size: 16px;
  line-height: 1.25;
}

.knowledge-toc-row.is-child {
  margin-left: 28px;
}

.knowledge-toc-row.is-subchild {
  grid-template-columns: 40px minmax(0, 1fr);
  margin-left: 58px;
  color: var(--hint);
}

.knowledge-toc-row:hover,
.knowledge-toc-row:focus-visible {
  color: var(--text);
  border-color: rgba(67, 215, 162, .38);
  background: rgba(67, 215, 162, .1);
  outline: none;
}

.knowledge-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.knowledge-filter {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(211, 235, 226, .11);
  border-radius: 999px;
  background: rgba(247, 251, 248, .035);
  color: var(--hint);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.knowledge-filter:hover,
.knowledge-filter:focus-visible,
.knowledge-filter.is-active {
  color: var(--text);
  border-color: rgba(67, 215, 162, .42);
  background: rgba(67, 215, 162, .12);
  outline: none;
}

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

.knowledge-card {
  min-height: 350px;
  overflow: hidden;
  background:
    radial-gradient(260px 180px at 16% 0%, color-mix(in srgb, var(--kb-accent) 18%, transparent), transparent 72%),
    rgba(17, 27, 31, .76);
}

.knowledge-card-link {
  position: relative;
  min-height: 350px;
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  gap: 16px;
  padding: 24px;
  color: var(--text);
  text-decoration: none;
}

.knowledge-card-link::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--kb-accent), transparent);
  opacity: .68;
}

.knowledge-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.knowledge-card-number {
  font-family: "Geist Mono", Consolas, monospace;
  color: var(--kb-accent);
  font-weight: 900;
}

.knowledge-card-meta {
  color: var(--hint);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.knowledge-card-orbit {
  position: relative;
  width: 118px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 8px 0;
  border: 1px solid color-mix(in srgb, var(--kb-accent) 28%, transparent);
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--kb-accent) 12%, transparent), transparent 66%);
}

.knowledge-card-orbit span {
  width: 46px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 30%, rgba(255, 255, 255, .86), transparent 14%),
    radial-gradient(circle at 50% 50%, var(--kb-accent), rgba(67, 215, 162, .2) 62%, transparent 64%);
  box-shadow: 0 0 34px color-mix(in srgb, var(--kb-accent) 34%, transparent);
}

.knowledge-card-orbit i {
  position: absolute;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 18px var(--kb-accent);
  transform: translate(52px, -8px);
}

.knowledge-card strong {
  font-size: 23px;
  line-height: 1.08;
}

.knowledge-card em {
  color: var(--hint);
  font-style: normal;
  line-height: 1.5;
}

.knowledge-card-action {
  width: fit-content;
  color: color-mix(in srgb, var(--kb-accent) 82%, #ffffff);
  font-size: 14px;
  font-weight: 850;
}

.knowledge-card:hover .knowledge-card-action,
.knowledge-card:focus-within .knowledge-card-action {
  color: var(--text);
}

.knowledge-article-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 8, 6, .62), transparent 36%),
    linear-gradient(180deg, transparent 70%, rgba(0, 8, 6, .78));
}

.kb-body .kb-steps,
.kb-body .kb-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.kb-section {
  scroll-margin-top: calc(var(--header) + 26px);
}

.kb-section.level-2 {
  padding-left: 20px;
  border-left: 2px solid rgba(121, 232, 255, .12);
}

.kb-section.level-3 {
  padding-left: 34px;
  border-left: 2px solid rgba(67, 215, 162, .12);
}

.kb-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.kb-section-number,
.kb-section-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(67, 215, 162, .28);
  border-radius: 999px;
  background: rgba(67, 215, 162, .1);
  color: var(--green);
  font-family: "Geist Mono", Consolas, monospace;
  font-size: 13px;
  font-weight: 900;
}

.kb-section-title {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.06;
}

.kb-section-title.is-child {
  font-size: clamp(24px, 2.4vw, 32px);
}

.kb-section-title.is-subchild {
  font-size: clamp(21px, 2vw, 26px);
}

.kb-section-lead {
  margin-top: 12px;
  color: var(--hint);
  font-size: 17px;
  line-height: 1.6;
}

.kb-media {
  margin: 22px 0 0;
  border: 1px solid rgba(211, 235, 226, .1);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(6, 18, 18, .72);
}

.kb-media img {
  width: 100%;
  height: auto;
  display: block;
}

.kb-media figcaption {
  padding: 12px 16px 14px;
  color: var(--hint);
  font-size: 14px;
  line-height: 1.5;
  border-top: 1px solid rgba(211, 235, 226, .08);
}

.kb-media.is-phone {
  max-width: 420px;
  margin-inline: auto;
}

.kb-media.is-wide {
  max-width: 720px;
  margin-inline: auto;
}

.kb-gallery {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.kb-gallery .kb-media {
  margin-top: 0;
}

.kb-note {
  margin: 22px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(67, 215, 162, .2);
  border-radius: 18px;
  background:
    radial-gradient(260px 160px at 0% 0%, rgba(67, 215, 162, .12), transparent 72%),
    rgba(67, 215, 162, .055);
  color: color-mix(in srgb, var(--text) 86%, var(--hint));
}

.kb-cta {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(121, 232, 255, .16);
  border-radius: 18px;
  background:
    radial-gradient(320px 160px at 0% 0%, rgba(121, 232, 255, .12), transparent 72%),
    rgba(247, 251, 248, .035);
}

.kb-cta strong {
  display: block;
  font-size: 18px;
}

.kb-cta p {
  margin-top: 10px;
}

.kb-faq {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.kb-question {
  padding: 18px;
  border: 1px solid rgba(211, 235, 226, .09);
  border-radius: 18px;
  background: rgba(247, 251, 248, .035);
}

.kb-question h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.18;
}

.kb-question p {
  margin-top: 10px;
}

.kb-resources {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.kb-resource {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(67, 215, 162, .28);
  border-radius: 999px;
  color: var(--text);
  background: rgba(67, 215, 162, .09);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.kb-resource:hover,
.kb-resource:focus-visible {
  border-color: rgba(121, 232, 255, .4);
  background: rgba(121, 232, 255, .1);
  outline: none;
}

.kb-return-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.kb-return-link:hover,
.kb-return-link:focus-visible {
  color: var(--text);
  outline: none;
}

.kb-body .kb-steps {
  counter-reset: kb-step;
  display: grid;
  gap: 10px;
}

.kb-body .kb-steps li {
  counter-increment: kb-step;
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 14px 58px;
  border: 1px solid rgba(211, 235, 226, .09);
  border-radius: 16px;
  background: rgba(247, 251, 248, .035);
  color: var(--text);
}

.kb-body .kb-steps li::before {
  content: counter(kb-step);
  position: absolute;
  left: 16px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(67, 215, 162, .16);
  color: var(--green);
  font-family: "Geist Mono", Consolas, monospace;
  font-size: 13px;
  font-weight: 900;
}

.kb-body .kb-list {
  display: grid;
  gap: 10px;
}

.kb-body .kb-list li {
  position: relative;
  padding-left: 26px;
  color: var(--hint);
  line-height: 1.55;
}

.kb-body .kb-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(67, 215, 162, .45);
}

@keyframes ip-status-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(121, 232, 255, .1);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 0 8px rgba(121, 232, 255, .04);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(121, 232, 255, .1);
  }
}

.business-placeholder {
  min-height: calc(100vh - var(--header));
  display: grid;
  place-items: center;
  padding: 90px 0;
}

.placeholder-card {
  max-width: 780px;
  padding: 54px;
  text-align: center;
}

.placeholder-card h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.06;
}

.placeholder-card p {
  color: var(--hint);
  font-size: 18px;
}

.telegram {
  color: #7fd7ff;
  background: rgba(127, 215, 255, .12);
}

.email {
  color: var(--pink);
}

.email-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.email-form label span {
  display: block;
  margin-bottom: 7px;
  color: var(--hint);
  font-size: 13px;
  font-weight: 650;
}

.email-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid rgba(247, 237, 245, .11);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: rgba(4, 16, 15, .74);
  outline: none;
}

.email-form input:focus {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 4px rgba(67, 215, 162, .12);
}

.form-status {
  margin-top: 12px !important;
  color: var(--green) !important;
}

.services-section {
  position: relative;
}

.services-widget {
  position: relative;
  min-width: 0;
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.service-tabs {
  position: relative;
  width: min(100%, 420px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-inline: auto;
  padding: 5px;
  border: 1px solid rgba(211, 235, 226, .12);
  border-radius: 999px;
  background: rgba(17, 27, 31, .72);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .22);
}

.service-tabs::before {
  content: "";
  position: absolute;
  inset: 5px auto 5px 5px;
  width: calc(50% - 5px);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(67, 215, 162, .28), rgba(139, 108, 255, .24));
  box-shadow: 0 12px 32px rgba(67, 215, 162, .16);
  transition: transform 220ms var(--ease);
}

.services-widget.is-abroad .service-tabs::before {
  transform: translateX(100%);
}

.service-tab {
  position: relative;
  z-index: 1;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--hint);
  background: transparent;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  transition: color 180ms var(--ease);
}

.service-tab.is-active {
  color: var(--text);
}

.service-panel {
  position: relative;
  min-width: 0;
  min-height: 164px;
  padding: 12px 76px;
}

.service-panel[hidden] {
  display: none;
}

.service-controls {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.service-control {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(211, 235, 226, .18);
  border-radius: 50%;
  color: var(--text);
  background: rgba(17, 27, 31, .84);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .3), 0 0 0 1px rgba(67, 215, 162, .08) inset;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}

.service-control:hover,
.service-control:focus-visible {
  border-color: var(--border-strong);
  background: rgba(34, 74, 64, .88);
  outline: none;
  transform: translateY(-2px);
}

.service-control svg {
  width: 22px;
  height: 22px;
}

.service-track {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  display: flex;
  gap: 14px;
  padding: 10px 2px 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: pan-y pinch-zoom;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-overflow-scrolling: touch;
}

.service-track::-webkit-scrollbar {
  display: none;
}

.service-track:focus,
.service-track:focus-visible {
  outline: none;
}

.service-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.service-track.is-auto-scrolling {
  scroll-snap-type: none;
}

.service-card {
  flex: 0 0 268px;
  min-height: 120px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px;
  scroll-snap-align: start;
  transition: transform 220ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.service-card:hover,
.service-card.is-center {
  border-color: var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: none;
}

.service-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: transparent;
  box-shadow: none;
}

.service-logo svg {
  width: 100% !important;
  height: 100% !important;
}

.service-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.logo-raster {
  background: transparent;
}

.logo-raster img {
  transform: scale(1.28);
}

.logo-instagram {
  background:
    radial-gradient(circle at 30% 105%, #feda75 0 22%, transparent 35%),
    radial-gradient(circle at 15% 15%, #fa7e1e 0 18%, transparent 35%),
    linear-gradient(135deg, #833ab4, #fd1d1d 48%, #fcb045);
}

.logo-tiktok {
  background: #08090d;
}

.logo-chatgpt {
  background: #0b2a24;
}

.logo-gemini {
  background: radial-gradient(circle at 30% 20%, #e8f0fe, #8ab4f8 42%, #3f51b5);
}

.service-card div {
  min-width: 0;
  display: grid;
}

.service-card strong {
  font-size: 17px;
  line-height: 1.15;
}

.service-card small {
  display: block;
  margin-top: 6px;
  color: var(--hint);
  font-size: 12px;
  line-height: 1.35;
}

.location-orbit {
  position: relative;
  min-width: 0;
  min-height: 164px;
  margin-top: 30px;
  padding: 12px 76px;
  overflow: visible;
}

.location-controls {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.location-control {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(211, 235, 226, .18);
  border-radius: 50%;
  color: var(--text);
  background: rgba(17, 27, 31, .82);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .32), 0 0 0 1px rgba(67, 215, 162, .08) inset;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}

.location-control:hover,
.location-control:focus-visible {
  border-color: var(--border-strong);
  background: rgba(34, 74, 64, .88);
  outline: none;
  transform: translateY(-2px);
}

.location-control svg {
  width: 23px;
  height: 23px;
}

.locations {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 14px;
  width: 100%;
  padding: 10px 2px 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: pan-y pinch-zoom;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.locations::-webkit-scrollbar {
  display: none;
}

.locations:focus,
.locations:focus-visible {
  outline: none;
}

.location:focus,
.location:focus-visible {
  outline: none;
}

.locations.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.locations.is-auto-scrolling {
  scroll-snap-type: none;
}

.location {
  flex: 0 0 268px;
  min-height: 120px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px;
  scroll-snap-align: start;
  transform-origin: center;
  transition: transform 220ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.location:hover {
  transform: none;
  border-color: var(--border);
}

.location.is-center {
  border-color: var(--border);
  background: var(--surface);
  box-shadow: none;
  transform: none;
}

.locations.is-dragging .location.is-center {
  transform: none;
}

.flag {
  position: relative;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(247, 237, 245, .06);
  box-shadow: none;
}

.flag svg {
  width: 100%;
  height: 100%;
}

.flag::after {
  content: none;
}

.location div {
  min-width: 0;
  display: grid;
}

.location strong {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

.location small {
  display: block;
  margin-top: 4px;
  color: var(--hint);
  font-size: 12px;
}

.location.highlight {
  border-color: var(--border-strong);
  background: linear-gradient(180deg, rgba(73, 151, 126, .12), rgba(17, 27, 31, .72));
}

.faq svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--pink);
}

.app-transition[hidden] {
  display: none;
}

.support-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.support-toggle {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition: transform 180ms var(--ease), filter 180ms var(--ease);
}

.support-toggle:hover,
.support-toggle:focus-visible,
.support-widget.open .support-toggle {
  outline: none;
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.support-toggle img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: saturate(1.08) brightness(1.08) drop-shadow(0 12px 20px rgba(0, 0, 0, .4)) drop-shadow(0 0 14px rgba(67, 215, 162, .22));
}

.support-menu[hidden] {
  display: none;
}

.support-menu {
  width: min(276px, calc(100vw - 28px));
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(211, 235, 226, .14);
  border-radius: 20px;
  background: rgba(10, 20, 24, .94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .52), 0 0 50px rgba(67, 215, 162, .12);
  backdrop-filter: blur(14px) saturate(145%);
  -webkit-backdrop-filter: blur(14px) saturate(145%);
}

.support-menu strong {
  font-size: 17px;
  line-height: 1.2;
}

.support-menu a,
.support-menu button {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(67, 215, 162, .22);
  border-radius: 14px;
  color: var(--text);
  background: rgba(67, 215, 162, .09);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.support-menu a:hover,
.support-menu a:focus-visible,
.support-menu button:hover,
.support-menu button:focus-visible {
  border-color: rgba(67, 215, 162, .52);
  background: rgba(67, 215, 162, .15);
  outline: none;
}

.app-transition {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(720px 460px at 50% 70%, rgba(4, 86, 61, .7), transparent 74%),
    linear-gradient(180deg, rgba(0, 8, 6, .9), rgba(0, 28, 20, .92));
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}

.app-transition-card {
  width: min(100%, 440px);
  min-height: 220px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding: 34px;
  border: 1px solid rgba(211, 235, 226, .16);
  border-radius: 18px;
  background: rgba(17, 27, 31, .92);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .56), 0 0 80px rgba(67, 215, 162, .12);
}

.app-transition-card img {
  width: auto;
  height: 76px;
  margin-bottom: 8px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .34));
}

.app-transition-card strong {
  color: var(--text);
  font-size: 30px;
  line-height: 1;
}

.app-transition-card strong::first-letter {
  color: var(--text);
}

.app-transition-card span {
  color: var(--hint);
  font-size: 14px;
}

.app-transition-card i {
  width: 180px;
  height: 6px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(211, 235, 226, .08);
}

.app-transition-card i::before {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--violet));
  animation: loading-bar 760ms var(--ease) infinite alternate;
}

body.app-loading {
  overflow: hidden;
}

@keyframes loading-bar {
  from { transform: translateX(0); }
  to { transform: translateX(140%); }
}

.faq {
  max-width: 780px;
  display: grid;
  gap: 10px;
  margin-inline: auto;
}

.q {
  padding: 0;
  border-radius: var(--radius-md);
}

.q summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 66px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.q summary::-webkit-details-marker {
  display: none;
}

.q summary svg {
  transition: transform 180ms var(--ease);
}

.q[open] summary svg {
  transform: rotate(180deg);
}

.q p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--hint);
}

.cta-section {
  padding: 30px 0 92px;
}

.cta-card {
  padding: 58px 36px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  text-align: center;
  background:
    radial-gradient(780px 360px at 50% 0%, rgba(67, 215, 162, .2), transparent 72%),
    var(--surface);
  box-shadow: var(--glow);
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--border);
  color: var(--hint);
}

.site-footer .brand-logo {
  height: 54px;
  max-width: 132px;
}

.site-footer .brand-header {
  gap: 10px;
  color: var(--text);
  font-size: 21px;
  font-weight: 850;
}

.site-footer .brand-header .brand-icon {
  flex-basis: 40px;
  width: 40px;
  height: 40px;
}

.site-footer .brand-header .brand-word {
  color: var(--text);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-inner a {
  color: var(--hint);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--text);
  outline: none;
}

.js-ready .feature,
.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(6px);
  will-change: opacity, transform, filter;
}

.js-ready .feature.is-visible,
.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 560ms var(--ease),
    transform 560ms var(--ease),
    filter 560ms var(--ease),
    border-color 180ms var(--ease),
    background 180ms var(--ease),
    box-shadow 180ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

@media (max-width: 930px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
    padding-right: 58px;
  }

  .nav-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    display: grid;
    transform: translateY(-50%);
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(var(--header) + 8px);
    display: none;
    grid-template-columns: 1fr;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(18, 13, 20, .96);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    text-align: center;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 4px;
    transform: none;
  }

  .nav-auth {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero h1 {
    font-size: 40px;
  }

  .ip-topline-inner {
    gap: 8px;
    padding: 4px 0;
    line-height: 1.35;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-copy {
    max-width: 720px;
    margin-inline: auto;
  }

  .hero-status,
  .hero-actions {
    justify-content: center;
  }

  .hero h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-visual {
    max-width: 680px;
    margin-inline: auto;
    place-items: center;
  }

  .hero-phone {
    width: min(240px, 46vw);
    margin-right: 0;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .comparison-art {
    top: -84px;
    right: -86px;
    width: min(330px, 36vw);
  }

  .compare-board {
    background: rgba(5, 16, 18, .56);
  }

  .partner-teasers,
  .subhero-grid,
  .partner-proof-grid,
  .benefit-grid,
  .business-hero-grid,
  .business-feature-grid,
  .business-scenario-panel,
  .ip-hero-grid,
  .knowledge-hero-grid,
  .knowledge-featured,
  .blog-hero-grid,
  .blog-featured,
  .blog-subscribe {
    grid-template-columns: 1fr;
  }

  .home-knowledge-callout {
    grid-template-columns: 1fr;
  }

  .knowledge-hero {
    padding-top: 70px;
  }

  .knowledge-hero-grid {
    gap: 28px;
  }

  .knowledge-hero-copy,
  .knowledge-hero-copy p {
    max-width: none;
  }

  .knowledge-hero-visual {
    min-height: 360px;
  }

  .knowledge-device {
    min-height: 360px;
  }

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

  .blog-hero {
    padding-top: 68px;
  }

  .blog-hero-grid {
    gap: 26px;
  }

  .blog-hero-copy,
  .blog-featured-copy {
    max-width: none;
  }

  .blog-hero-visual {
    min-height: 360px;
  }

  .blog-hero-visual img {
    min-height: 360px;
  }

  .blog-featured {
    gap: 20px;
  }

  .blog-stat-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subhero {
    text-align: center;
  }

  .subhero p,
  .subhero-actions {
    margin-inline: auto;
    justify-content: center;
  }

  .business-hero {
    min-height: auto;
    text-align: center;
  }

  .business-copy p,
  .business-scroll {
    margin-inline: auto;
  }

  .business-hero-art {
    min-height: 280px;
  }

  .business-scenario-panel {
    gap: 0;
  }

  .ip-hero {
    padding: 56px 0 24px;
  }

  .ip-copy {
    justify-items: center;
    text-align: center;
  }

  .ip-copy h1,
  .ip-copy p {
    margin-inline: auto;
  }

  .ip-status-card,
  .ip-refresh {
    margin-inline: auto;
  }

  .ip-panel {
    max-width: 760px;
    margin-inline: auto;
  }

  .ip-details-grid,
  .ip-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ip-subscribe {
    flex-direction: column;
    align-items: flex-start;
  }

  .ip-subscribe .button {
    width: fit-content;
  }

  .ip-map-overlay {
    left: 12px;
    top: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
  }

  .steps-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .steps-layout::before,
  .step-node {
    display: none;
  }

  .step-copy,
  .step-visual {
    min-height: auto;
    text-align: center;
  }

  .step-copy p {
    margin-inline: auto;
  }

}

@media (max-width: 720px) {
  :root {
    --header: 66px;
  }

  .container {
    width: calc(100% - 28px);
  }

  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 12px;
    padding-right: 0;
  }

  .nav-toggle,
  .nav-links {
    display: none !important;
  }

  .header-action {
    min-height: 42px;
    display: inline-flex;
    padding: 0 14px;
    font-size: 13px;
  }

  .header-action svg {
    display: none;
  }

  .lang-switch {
    display: none;
  }

  .nav-actions {
    gap: 0;
  }

  .header-label-desktop {
    display: none;
  }

  .header-label-mobile {
    display: inline;
  }

  .brand-logo {
    height: 52px;
    max-width: 126px;
  }

  .brand-header {
    gap: 8px;
    font-size: 17px;
  }

  .brand-icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: auto;
    padding: 42px 0 30px;
  }

  .hero::before {
    background:
      radial-gradient(420px 420px at 50% 34%, rgba(67, 215, 162, .13), transparent 70%),
      radial-gradient(360px 360px at 74% 18%, rgba(121, 232, 255, .09), transparent 68%);
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(0, 8, 6, .96) 0%, rgba(0, 8, 6, .9) 46%, rgba(0, 8, 6, .42) 72%, rgba(0, 27, 20, .25) 100%),
      radial-gradient(520px 520px at 50% 32%, rgba(67, 215, 162, .12), transparent 68%);
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-note {
    margin: 0;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-visual {
    display: none;
  }

  .hero-visual img {
    width: 116%;
    margin-left: -8%;
  }

  .hero-features {
    margin-top: 54px;
  }

  .hero-features .features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-features .feature {
    min-height: auto;
    padding: 18px;
  }

  .location-orbit {
    min-height: 148px;
    margin-top: 24px;
    padding: 8px 0 12px;
    overflow: visible;
  }

  .location-controls {
    display: none;
  }

  .hero-actions,
  .hero-meta,
  .features {
    grid-template-columns: 1fr;
  }

  .support-widget {
    right: 8px;
    bottom: 8px;
  }

  .support-toggle {
    width: 52px;
    height: 52px;
  }

  .support-toggle img {
    width: 52px;
    height: 52px;
  }

  .support-menu {
    width: min(250px, calc(100vw - 24px));
  }

  .knowledge-page .support-widget,
  .knowledge-article-page .support-widget {
    display: none;
  }

  .blog-hero {
    padding: 48px 0 24px;
  }

  .blog-hero-copy h1 {
    font-size: 34px;
  }

  .blog-hero-actions {
    display: grid;
  }

  .blog-hero-visual {
    min-height: 280px;
  }

  .blog-hero-visual img {
    min-height: 280px;
    border-radius: 22px;
  }

  .blog-grid,
  .blog-stat-grid {
    grid-template-columns: 1fr;
  }

  .blog-article-card {
    min-height: 380px;
  }

  .blog-featured,
  .blog-subscribe {
    padding: 24px;
  }

  .service-tabs {
    width: 100%;
  }

  .comparison-section {
    padding-top: 64px;
  }

  .comparison-copy {
    text-align: center;
  }

  .comparison-art {
    position: relative;
    top: auto;
    right: auto;
    width: min(330px, 92vw);
    margin: 18px auto -16px;
  }

  .compare-board {
    margin-top: 28px;
    border-radius: 22px;
  }

  .compare-row {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    padding: 16px;
    gap: 10px;
  }

  .compare-head {
    display: none;
  }

  .compare-row > * {
    padding: 0;
  }

  .compare-row > :first-child {
    grid-column: 1 / -1;
    color: rgba(247, 251, 248, .84);
    font-size: 13px;
    font-weight: 850;
  }

  .compare-row > strong,
  .compare-row > :last-child {
    min-height: 50px;
    border-radius: 14px;
    padding: 12px;
    text-align: left;
    font-size: 13.5px;
  }

  .compare-row > strong {
    display: block;
  }

  .compare-row > strong::before {
    content: "NovaBooster";
    display: block;
    margin-bottom: 3px;
    color: var(--green);
    font-size: 11px;
    font-weight: 850;
  }

  .compare-row > :last-child::before {
    content: "Бесплатные сервисы";
    display: block;
    margin-bottom: 3px;
    color: rgba(247, 251, 248, .72);
    font-size: 11px;
    font-weight: 850;
  }

  .service-panel {
    min-height: 148px;
    padding: 8px 0 10px;
  }

  .service-controls {
    display: none;
  }

  .service-track {
    gap: 12px;
    margin-inline: -14px;
    padding: 12px 14px 18px;
    mask-image: linear-gradient(90deg, #000 0 88%, transparent);
  }

  .service-card {
    flex: 0 0 min(82vw, 320px);
    min-height: 112px;
  }

  .locations {
    gap: 12px;
    margin-inline: -14px;
    padding: 12px 14px 18px;
    mask-image: linear-gradient(90deg, #000 0 88%, transparent);
  }

  .location {
    flex: 0 0 min(82vw, 320px);
    min-height: 96px;
  }

  .hero-actions .button,
  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-meta {
    display: grid;
    margin-top: 26px;
  }

  .section {
    padding: 66px 0;
  }

  .partner-teaser-section {
    padding-top: 56px;
  }

  .partner-teaser {
    min-height: 420px;
    padding: 24px;
  }

  .partner-teaser-copy {
    max-width: 100%;
  }

  .partner-teaser img {
    right: 50%;
    bottom: -78px;
    width: 88%;
    max-width: 360px;
    transform: translateX(50%);
  }

  .teaser-link {
    margin-top: 24px;
  }

  .subhero {
    padding: 54px 0 42px;
  }

  .subhero h1 {
    font-size: 38px;
  }

  .subhero p {
    font-size: 17px;
  }

  .subhero-art {
    min-height: 270px;
  }

  .affiliate-steps {
    border-radius: 24px;
  }

  .step-copy h3 {
    font-size: 26px;
  }

  .proof-card,
  .placeholder-card,
  .business-form-card {
    padding: 26px;
  }

  .business-hero {
    padding: 54px 0;
  }

  .business-copy h1 {
    font-size: 42px;
  }

  .business-copy p,
  .business-scenario-panel p {
    font-size: 17px;
  }

  .business-feature {
    min-height: 216px;
  }

  .business-feature h3 {
    margin-top: 24px;
  }

  .business-feature-icon {
    width: 78px;
    height: 78px;
  }

  .business-feature-icon svg {
    width: 48px;
    height: 48px;
  }

  .business-toggle {
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
  }

  .business-toggle button {
    max-width: 134px;
    font-size: 15px;
    text-align: left;
  }

  .business-scenarios h2 {
    text-align: center;
    font-size: 34px;
  }

  .business-form .button {
    width: 100%;
  }

  .ip-topline {
    font-size: 10.5px;
  }

  .ip-topline strong {
    font-size: 10.5px;
  }

  .ip-topline [data-top-country] {
    display: none;
  }

  .ip-map-overlay {
    top: auto;
    right: auto;
    bottom: 12px;
    padding: 10px 12px;
  }

  .ip-map-overlay-badge {
    width: 34px;
    height: 34px;
  }

  .ip-map-overlay-copy strong {
    font-size: 13px;
  }

  .ip-map-overlay-copy small {
    font-size: 11px;
  }

  .ip-copy h1 {
    font-size: 30px;
  }

  .ip-copy p {
    font-size: 16px;
  }

  .ip-panel {
    padding: 18px;
  }

  .ip-panel-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .ip-panel-head strong {
    font-size: 15px;
    text-align: left;
  }

  .ip-map {
    height: 250px;
    min-height: 250px;
  }

  .ip-map-stage,
  .ip-map-stage svg,
  .ip-map-fallback,
  .ip-map-stage .leaflet-container {
    height: 250px;
    min-height: 250px;
  }

  .ip-location-line {
    font-size: 14px;
  }

  .ip-details-grid,
  .ip-article-grid {
    grid-template-columns: 1fr;
  }

  .ip-detail,
  .ip-article-card {
    min-height: auto;
  }

  .ip-subscribe {
    padding: 24px 20px;
  }

  .ip-subscribe .button {
    width: 100%;
  }

  .blog-subscribe .button {
    width: 100%;
  }

  .support-widget {
    right: 14px;
    bottom: 14px;
  }

  .support-toggle {
    width: 68px;
    height: 68px;
  }

  .support-toggle img {
    width: 68px;
    height: 68px;
  }

  .support-menu {
    width: min(266px, calc(100vw - 28px));
  }

  .affiliate-band {
    padding: 44px 0;
  }

  .app-transition-card {
    padding: 28px 18px 22px;
  }

  .cta-card {
    padding: 42px 22px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 29px;
  }

  .hero-meta dd {
    font-size: 20px;
  }

  .ip-copy h1 {
    font-size: 28px;
  }

  .ip-map {
    height: 220px;
    min-height: 220px;
  }

  .ip-map-stage,
  .ip-map-stage svg,
  .ip-map-fallback,
  .ip-map-stage .leaflet-container {
    height: 220px;
    min-height: 220px;
  }

  .ip-map-loading {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 980px) {
  .article-hero-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-hero-grid {
    gap: 26px;
  }

  .article-hero-copy,
  .article-hero-copy p {
    max-width: none;
  }

  .article-aside {
    position: static;
  }

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

@media (max-width: 640px) {
  .home-knowledge-callout {
    padding: 22px;
  }

  .home-knowledge-callout .button {
    width: 100%;
  }

  .knowledge-hero {
    padding: 54px 0 28px;
  }

  .knowledge-hero-copy h1 {
    font-size: 36px;
  }

  .knowledge-hero-actions,
  .knowledge-featured,
  .blog-hero-actions {
    display: grid;
  }

  .knowledge-hero-actions .button,
  .knowledge-featured .button,
  .blog-hero-actions .button {
    width: 100%;
  }

  .knowledge-hero-visual {
    min-height: 300px;
  }

  .knowledge-device {
    min-height: 300px;
    padding: 20px;
    border-radius: 24px;
  }

  .knowledge-device::before {
    inset: 14px;
    border-radius: 18px;
  }

  .knowledge-device-flow {
    gap: 10px;
    margin-top: 24px;
  }

  .knowledge-device-flow span {
    min-height: 58px;
    border-radius: 16px;
    font-size: 14px;
  }

  .knowledge-device-panel {
    margin-top: 34px;
    padding: 18px;
  }

  .knowledge-featured {
    padding: 24px;
  }

  .knowledge-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .knowledge-filters::-webkit-scrollbar {
    display: none;
  }

  .knowledge-filter {
    flex: 0 0 auto;
  }

  .knowledge-toc {
    padding: 14px;
    border-radius: 22px;
  }

  .knowledge-toc-row {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 50px;
    padding: 10px 12px;
  }

  .knowledge-toc-row.is-child {
    margin-left: 12px;
  }

  .knowledge-toc-row.is-subchild {
    grid-template-columns: 24px minmax(0, 1fr);
    margin-left: 26px;
  }

  .knowledge-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-card,
  .knowledge-card-link {
    min-height: 310px;
  }

  .kb-body .kb-steps li {
    align-items: flex-start;
  }

  .kb-section.level-2,
  .kb-section.level-3 {
    padding-left: 14px;
  }

  .blog-article-card.has-thumb {
    grid-template-rows: 160px 1fr;
  }

  .blog-card-visual .blog-image-brand {
    left: auto;
    right: 14px;
    bottom: 14px;
    padding: 7px;
  }

  .blog-card-visual .blog-image-brand b {
    display: none;
  }

  .article-hero {
    padding: 52px 0 24px;
  }

  .article-hero-copy h1 {
    font-size: 34px;
  }

  .article-hero-actions {
    display: grid;
  }

  .article-hero-actions .button {
    width: 100%;
  }

  .article-hero-visual {
    min-height: 280px;
    border-radius: 22px;
  }

  .article-hero-visual > img {
    min-height: 280px;
  }

  .article-body,
  .article-cta {
    padding: 22px;
  }

  .kb-section.level-2,
  .kb-section.level-3 {
    padding-left: 0;
    border-left: 0;
  }

  .kb-section-title {
    font-size: 27px;
  }

  .kb-section-title.is-child {
    font-size: 23px;
  }

  .kb-section-title.is-subchild {
    font-size: 21px;
  }

  .kb-section-lead {
    font-size: 16px;
  }

  .kb-media {
    border-radius: 18px;
  }

  .kb-media figcaption {
    padding: 10px 12px 12px;
    font-size: 13px;
  }

  .kb-note,
  .kb-cta {
    padding: 16px;
    border-radius: 16px;
  }

  .kb-gallery {
    gap: 14px;
  }

  .kb-body .kb-steps,
  .kb-body .kb-list {
    margin-top: 14px;
  }

  .article-body h2 {
    font-size: 23px;
  }

  .article-body p {
    font-size: 16px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  #petals {
    display: none;
  }

  .js-ready .feature,
  .js-ready .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}
