:root {
  --bg: #07111f;
  --panel: rgba(9, 18, 35, 0.78);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f4f8ff;
  --muted: #c3d0e4;
  --cyan: #2de0ff;
  --blue: #2c74ff;
  --violet: #8f4cff;
  --green: #35df8d;
  --orange: #ffad32;
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --mobile-dock-safe-bottom: 10px;
}

* { box-sizing: border-box; }

.seo-hidden-heading {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-main);
  font-weight: 650;
  letter-spacing: 0;
  background: var(--bg);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  font-synthesis-weight: none;
}

html:has(.seo-landing-shell),
body:has(.seo-landing-shell) {
  height: auto;
  min-height: 100%;
  overflow: auto;
}

html:has(.blog-light-shell),
body:has(.blog-light-shell),
body.blog-light-body {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.desktop-shell {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: var(--bg);
}

.wallpaper {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(45, 224, 255, 0.36), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(143, 76, 255, 0.36), transparent 25%),
    radial-gradient(circle at 48% 88%, rgba(53, 223, 141, 0.18), transparent 32%),
    linear-gradient(145deg, #07111f 0%, #0e1730 46%, #071c2c 100%);
}

.wallpaper:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 74px 74px;
  opacity: .48;
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 14, 28, 0.72);
  backdrop-filter: blur(18px);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
  overflow: visible;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.topbar-left {
  flex: 1 1 auto;
  overflow: visible;
  scrollbar-width: none;
}

.topbar-left::-webkit-scrollbar {
  display: none;
}

.topbar-right {
  flex: 0 0 auto;
}

.topbar button {
  white-space: nowrap;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-dot {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, #7ed957, #20d7ff);
  box-shadow: 0 0 22px rgba(32, 215, 255, .42);
}

.menu-group {
  position: relative;
  height: 42px;
  display: inline-flex;
  align-items: center;
}

.menu-group > button {
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.menu-group > button:after {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 2px solid rgba(255, 255, 255, .72);
  border-bottom: 2px solid rgba(255, 255, 255, .72);
  transform: rotate(45deg);
}

.mega-menu {
  position: absolute;
  top: 42px;
  left: 0;
  z-index: 320;
  width: min(920px, calc(100vw - 44px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(8, 16, 32, .94);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .42);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.menu-group:hover .mega-menu,
.menu-group.menu-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu section {
  padding: 8px 12px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.mega-menu section {
  min-width: 0;
}

.mega-menu section:last-child {
  border-right: 0;
}

.mega-menu strong {
  display: block;
  margin-bottom: 10px;
  color: #62e8ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mega-menu strong:after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.mega-menu button {
  display: block;
  width: 100%;
  padding: 8px 9px;
  border-radius: 8px;
  color: #dce8ff;
  text-align: left;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
}

.mega-menu button:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  transform: translateX(3px);
}

.product-menu {
  width: min(680px, calc(100vw - 44px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workspace {
  position: absolute;
  inset: 42px 0 94px;
  z-index: 2;
  overflow: hidden;
}

.app-window {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: min(var(--w), calc(100vw - 30px));
  height: min(var(--h), calc(100% - var(--y) - 18px));
  display: none;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  overflow: hidden;
  resize: both;
  min-width: 360px;
  min-height: 250px;
}

.app-window.active {
  display: flex;
  flex-direction: column;
}

.app-window.minimized {
  display: none;
}

.app-window.maximized {
  left: 16px !important;
  top: 16px !important;
  width: calc(100% - 32px) !important;
  height: calc(100% - 32px) !important;
  max-width: none;
  max-height: none;
  resize: none;
}

.window-bar {
  height: 45px;
  flex: 0 0 45px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: rgba(255, 255, 255, .06);
  cursor: move;
  user-select: none;
}

.window-bar strong {
  margin-left: 8px;
  color: #dce9ff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
}

.win-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
}

.win-close { background: #ff5f57; }
.win-minimize { background: #febc2e; }
.win-maximize { background: #28c840; }

.window-content {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 34px;
}

.hero-content {
  padding: 42px 52px;
}

.welcome-window {
  max-width: min(560px, calc(100vw - 28px));
}

.welcome-window .hero-content {
  padding: 24px 32px 26px;
}

.welcome-window .hero-logo {
  width: 148px;
  margin-bottom: 14px;
}

.welcome-window h1 {
  max-width: 465px;
  margin-top: 14px;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 950;
}

.welcome-window p {
  max-width: 465px;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 650;
}

.welcome-window .hero-actions,
.welcome-window .stats-row {
  margin-top: 16px;
}

.welcome-window .stats-row {
  gap: 8px;
}

.welcome-window .stats-row span {
  min-height: 32px;
  padding: 0 11px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 950;
}

.welcome-window .btn {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 9px;
}

.terminal-window {
  border-color: rgba(45, 224, 255, .22);
  background: rgba(3, 9, 20, .9);
}

.terminal-content {
  padding: 28px;
  background:
    linear-gradient(rgba(45, 224, 255, .045) 1px, transparent 1px),
    radial-gradient(circle at 18% 0%, rgba(45, 224, 255, .16), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(143, 76, 255, .13), transparent 34%),
    #050b16;
  background-size: 100% 28px, auto, auto, auto;
}

.terminal-head {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(45, 224, 255, .18);
}

.terminal-head img {
  width: 110px;
  display: block;
  filter: drop-shadow(0 0 18px rgba(45, 224, 255, .28));
}

.terminal-head span,
.terminal-head strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0;
}

.terminal-head span {
  color: #35df8d;
  font-size: 13px;
  font-weight: 950;
}

.terminal-head strong {
  margin-top: 6px;
  color: #fff;
  font-size: 25px;
  font-weight: 950;
  line-height: 1.16;
}

.terminal-lines {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.terminal-lines p {
  max-width: 100%;
  margin: 0;
  color: #d6e5f8;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.62;
}

.terminal-lines b {
  color: #35df8d;
  font-weight: 950;
}

.terminal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-logo {
  width: 190px;
  display: block;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 18px rgba(45, 224, 255, .22));
}

.kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(75, 224, 255, .38);
  border-radius: 999px;
  background: rgba(25, 216, 255, .11);
  color: #c7fbff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 620px;
  margin: 22px 0 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: 0;
}

h2 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 31px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0;
}

h3,
h4 {
  font-family: var(--font-display);
  font-weight: 950;
  letter-spacing: 0;
}

p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 650;
  letter-spacing: 0;
}

ul {
  margin: 22px 0 0;
  padding-left: 20px;
  color: #dce8ff;
  line-height: 1.9;
}

.hero-actions,
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn,
.stats-row span,
.contact-box {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 950;
  letter-spacing: 0;
}

.btn-primary { background: linear-gradient(135deg, var(--blue), var(--violet)); box-shadow: 0 16px 36px rgba(44, 116, 255, .32); }
.btn-ghost,
.stats-row span,
.contact-box { border: 1px solid rgba(255, 255, 255, .16); background: rgba(255, 255, 255, .06); }

.contact-window {
  max-width: min(430px, calc(100vw - 24px));
}

.contact-content {
  padding: 24px;
}

.contact-content .app-mark {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  font-size: 22px;
}

.contact-content h2 {
  font-size: 27px;
}

.contact-content p {
  font-size: 13px;
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.contact-form label {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.contact-form label span {
  color: #f4f8ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  outline: 0;
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
}

.contact-form textarea {
  min-height: 88px;
  padding: 11px 12px;
  resize: vertical;
  line-height: 1.45;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(45, 224, 255, .58);
  box-shadow: 0 0 0 3px rgba(45, 224, 255, .12);
}

.contact-form small {
  min-height: 14px;
  color: #ffb3b3;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
}

.phone-fields {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 10px;
}

.country-select {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.07);
}

.country-select:focus-within {
  border-color: rgba(45, 224, 255, .58);
  box-shadow: 0 0 0 3px rgba(45, 224, 255, .12);
}

.country-select input {
  border: 0;
  border-radius: 12px 0 0 12px;
  background: transparent;
  color: #fff;
}

.country-select button {
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(255,255,255,.1);
  color: #bff8ff;
  font-size: 18px;
}

.country-options {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 7px);
  z-index: 80;
  max-height: 238px;
  overflow: auto;
  padding: 7px;
  border: 1px solid rgba(45, 224, 255, .28);
  border-radius: 14px;
  background: rgba(8, 15, 30, .98);
  box-shadow: 0 22px 58px rgba(0,0,0,.52), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}

.country-options[hidden] {
  display: none;
}

.country-options button {
  width: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  color: #f4f8ff;
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: left;
}

.country-options button:hover,
.country-options button.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(44,116,255,.42), rgba(45,224,255,.16));
}

.country-options small {
  min-height: 0;
  margin-left: auto;
  color: #bff8ff;
  font-size: 12px;
  font-weight: 950;
}

.mobile-input-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  overflow: hidden;
}

.mobile-input-wrap strong {
  padding: 0 10px;
  color: #bff8ff;
  font-size: 13px;
  font-weight: 950;
}

.mobile-input-wrap input {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.captcha-box {
  padding: 12px;
  border: 1px solid rgba(45, 224, 255, .26);
  border-radius: 14px;
  background: rgba(45, 224, 255, .08);
}

.captcha-box strong {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  color: #bff8ff;
  background: rgba(255,255,255,.08);
  font-size: 13px;
  font-weight: 950;
}

.contact-submit {
  width: 100%;
  min-height: 44px;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: .62;
}

.form-status {
  min-height: 18px;
  margin: 0;
  color: #bff8ff;
  font-size: 12px !important;
  font-weight: 850;
}

.success-popup {
  position: absolute;
  inset: 45px 0 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(4, 10, 22, .72);
  backdrop-filter: blur(12px);
}

.success-popup[hidden] {
  display: none;
}

.success-popup-card {
  width: min(330px, 100%);
  padding: 24px;
  border: 1px solid rgba(53, 223, 141, .34);
  border-radius: 20px;
  background:
    radial-gradient(circle at 20% 0%, rgba(53, 223, 141, .18), transparent 34%),
    linear-gradient(145deg, rgba(11, 24, 44, .98), rgba(7, 13, 26, .98));
  box-shadow: 0 28px 90px rgba(0,0,0,.46), inset 0 1px 0 rgba(255,255,255,.1);
  text-align: center;
}

.success-popup-card i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 18px;
  background: linear-gradient(145deg, #35df8d, #0d7d54);
  color: #fff;
  font-size: 25px;
}

.success-popup-card strong {
  display: block;
  color: #fff;
  font-size: 27px;
  font-weight: 950;
  letter-spacing: 0;
}

.success-popup-card p {
  max-width: 100%;
  margin: 10px 0 18px;
  color: #dce8ff;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.55;
  letter-spacing: 0;
}

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

.product-tile {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  color: #fff;
  text-align: left;
  overflow: hidden;
}

.product-tile i,
.app-mark {
  margin-bottom: 17px;
  font-size: 34px;
}

.product-tile strong,
.product-tile small {
  display: block;
}

.product-tile strong { font-size: 17px; font-weight: 950; letter-spacing: 0; }
.product-tile small { margin-top: 5px; color: rgba(255, 255, 255, .78); line-height: 1.35; font-weight: 750; letter-spacing: 0; }

.tile-green { background: linear-gradient(145deg, #18bf70, #073f30); }
.tile-indigo { background: linear-gradient(145deg, #6157ff, #251a68); }
.tile-blue { background: linear-gradient(145deg, #1978ff, #092c65); }
.tile-orange { background: linear-gradient(145deg, #ffad32, #71380a); }

.app-detail .app-mark {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
}

.green { background: linear-gradient(145deg, #18bf70, #073f30); }
.indigo { background: linear-gradient(145deg, #6157ff, #251a68); }
.blue { background: linear-gradient(145deg, #1978ff, #092c65); }
.orange { background: linear-gradient(145deg, #ffad32, #71380a); }
.cyan { background: linear-gradient(145deg, #16bbcd, #063e4a); }
.violet { background: linear-gradient(145deg, #8f4cff, #321a68); }

.legal-copy p {
  max-width: 100%;
}

.about-window {
  max-width: min(920px, calc(100vw - 28px));
}

.about-content {
  padding: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(45, 224, 255, .13), transparent 34%),
    radial-gradient(circle at 92% 2%, rgba(139, 92, 246, .13), transparent 32%);
}

.about-hero,
.about-section,
.about-split,
.about-strip {
  padding: 34px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.about-hero h2,
.about-section h3,
.about-split h3 {
  margin-top: 12px;
  color: #fff;
  line-height: 1.1;
}

.about-hero h2 {
  max-width: 610px;
  font-size: 38px;
}

.about-hero p,
.about-split p,
.about-grid p,
.about-strip span {
  color: rgba(231, 238, 255, .78);
  line-height: 1.65;
}

.about-hero p {
  margin-top: 14px;
  font-size: 14px;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.about-hero figure {
  position: relative;
  margin: 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(0,0,0,.32);
}

.about-hero figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 9, 26, .28));
  pointer-events: none;
}

.about-hero img {
  width: 100%;
  min-height: 300px;
  display: block;
  object-fit: cover;
}

.about-section {
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.about-section h3,
.about-split h3 {
  max-width: 660px;
  font-size: 29px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.about-grid article,
.about-checks span,
.about-strip div {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.about-grid article {
  min-height: 210px;
  padding: 19px;
  border-radius: 16px;
}

.about-grid i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #bff8ff;
  background: linear-gradient(145deg, rgba(45, 224, 255, .22), rgba(139, 92, 246, .18));
  font-size: 18px;
}

.about-grid h4 {
  margin-top: 15px;
  color: #fff;
  font-size: 17px;
}

.about-grid p {
  margin-top: 9px;
  font-size: 13px;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, .78fr);
  gap: 24px;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.about-split p {
  margin-top: 14px;
  font-size: 14px;
}

.about-checks {
  display: grid;
  gap: 10px;
}

.about-checks span {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 13px 14px;
  border-radius: 13px;
  color: #eef7ff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.45;
}

.about-checks i {
  color: #35ee95;
}

.about-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.about-strip div {
  min-height: 118px;
  padding: 18px;
  border-radius: 15px;
}

.about-strip strong {
  display: block;
  color: #bff8ff;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: 0;
}

.about-strip span {
  display: block;
  margin-top: 9px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
}

.service-content {
  padding: 0;
}

.service-page {
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .72fr);
  gap: 28px;
  padding: 34px;
}

.service-copy {
  min-width: 0;
}

.service-kicker {
  display: inline-flex;
  max-width: 100%;
  min-height: 32px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(45, 224, 255, .32);
  border-radius: 999px;
  background: rgba(45, 224, 255, .08);
  color: #bff8ff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-page h2 {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 38px;
  font-weight: 950;
  letter-spacing: 0;
}

.service-page p {
  max-width: 720px;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0;
}

.service-main-image {
  width: 100%;
  max-height: 420px;
  display: block;
  object-fit: contain;
  margin: 24px 0 6px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
  background: rgba(4, 11, 24, .62);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
}

.software-sales-page {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr);
  background:
    linear-gradient(135deg, rgba(45, 224, 255, .08), transparent 34%),
    linear-gradient(315deg, rgba(53, 223, 141, .08), transparent 28%);
}

.software-sales-page .service-kicker {
  border-color: rgba(53, 223, 141, .42);
  background: rgba(53, 223, 141, .12);
  color: #c9ffe5;
}

.software-sales-page h2 {
  max-width: 780px;
  font-size: 44px;
}

.software-sales-page .service-lead {
  max-width: 820px;
  color: #f9fcff;
  font-size: 18px !important;
}

.software-sales-page .download-topbar {
  border-color: rgba(53, 223, 141, .32);
  background: linear-gradient(135deg, rgba(53, 223, 141, .16), rgba(45, 224, 255, .1));
}

.software-sales-page .service-main-image {
  max-height: 360px;
  object-fit: cover;
  border-color: rgba(53, 223, 141, .24);
}

.software-sales-products {
  margin-top: 28px;
}

.sales-section-head span {
  color: #35df8d;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.sales-section-head h3 {
  max-width: 760px;
  margin: 8px 0 18px;
  color: #fff;
  font-size: 26px;
  line-height: 1.22;
}

.software-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.software-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
  background: rgba(10, 19, 37, .82);
  box-shadow: 0 22px 62px rgba(0, 0, 0, .26);
}

.software-product-media {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: rgba(4, 11, 24, .84);
}

.software-product-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.software-image-button {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  overflow: hidden;
}

.software-image-button:after {
  content: "Click to view full image";
  position: absolute;
  right: 14px;
  bottom: 14px;
  max-width: calc(100% - 86px);
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #f4f8ff;
  background: rgba(4, 10, 22, .7);
  font-size: 11px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.software-product-media i {
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 16px;
  background: rgba(7, 12, 24, .78);
  font-size: 24px;
  backdrop-filter: blur(12px);
}

.software-product-body {
  padding: 18px;
}

.software-product-body h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 21px;
}

.software-product-body p {
  max-width: none;
  margin-bottom: 12px;
  color: #c9d7ec;
  font-size: 13px;
  line-height: 1.58;
}

.software-product-body ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.software-product-body li {
  color: #eaf3ff;
  font-size: 12px;
  font-weight: 850;
}

.software-product-body li:before {
  content: "\f00c";
  font-family: FontAwesome;
  margin-right: 8px;
  color: #35df8d;
}

.software-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.software-product-actions .btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 12px;
  white-space: nowrap;
}

.software-product-actions .btn i {
  width: 15px;
  flex: 0 0 15px;
  display: inline-flex;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
}

.product-green .software-product-media i { color: #35df8d; }
.product-indigo .software-product-media i { color: #8f8bff; }
.product-blue .software-product-media i { color: #5fb6ff; }
.product-cyan .software-product-media i { color: #2de0ff; }

.image-preview-modal {
  position: absolute;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 64px 24px 30px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: inherit;
  background: rgba(3, 8, 18, .86);
  backdrop-filter: blur(18px);
  overflow: auto;
}

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

.image-preview-modal figure {
  width: min(1180px, 100%);
  max-height: none;
  margin: 0;
  display: grid;
  gap: 12px;
}

.image-preview-modal img {
  width: 100%;
  max-height: calc(100vh - 260px);
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background: rgba(5, 12, 24, .9);
}

.image-preview-modal figcaption {
  color: #eaf3ff;
  font-size: 15px;
  font-weight: 950;
  text-align: center;
}

.image-preview-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
}

.service-lead {
  color: #f5f9ff;
  font-size: 17px !important;
  font-weight: 750;
  letter-spacing: 0;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.download-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 18px 0 4px;
  padding: 12px;
  border: 1px solid rgba(45, 224, 255, .2);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
}

.download-topbar strong {
  margin-right: auto;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
}

.download-topbar button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(44, 116, 255, .72), rgba(143, 76, 255, .72));
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.service-section {
  margin-top: 28px;
}

.service-section h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: 0;
}

.service-section p {
  max-width: 100%;
  margin-top: 0;
  font-size: 14px;
}

.topic-visual {
  position: relative;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 18px;
  overflow: hidden;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 20%, rgba(45, 224, 255, .22), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 50px rgba(0,0,0,.22);
}

.topic-visual-head {
  position: relative;
  z-index: 1;
}

.topic-visual-head i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 15px;
  background: rgba(255,255,255,.13);
  color: #fff;
  font-size: 21px;
}

.topic-visual-head strong,
.topic-visual-head span {
  display: block;
}

.topic-visual-head strong {
  color: #fff;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.25;
  letter-spacing: 0;
}

.topic-visual-head span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.topic-image {
  width: 100%;
  min-height: 190px;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(4, 11, 24, .62);
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
}

.topic-chips {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.topic-chips span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: #eaf4ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.topic-store { background: radial-gradient(circle at 16% 20%, rgba(255, 173, 50, .22), transparent 28%), linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035)); }
.topic-planning { background: radial-gradient(circle at 16% 20%, rgba(143, 76, 255, .25), transparent 28%), linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035)); }
.topic-customer { background: radial-gradient(circle at 16% 20%, rgba(53, 223, 141, .2), transparent 28%), linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035)); }
.topic-admin { background: radial-gradient(circle at 16% 20%, rgba(45, 224, 255, .22), transparent 28%), linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035)); }
.topic-payment { background: radial-gradient(circle at 16% 20%, rgba(44, 116, 255, .26), transparent 28%), linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035)); }
.topic-seo { background: radial-gradient(circle at 16% 20%, rgba(53, 223, 141, .22), transparent 28%), linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035)); }
.topic-support { background: radial-gradient(circle at 16% 20%, rgba(255, 111, 145, .24), transparent 28%), linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035)); }

.feature-list-rich {
  display: grid;
  gap: 10px;
}

.feature-list-rich span {
  display: flex;
  gap: 11px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .055);
  color: #e8f2ff;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
  letter-spacing: 0;
}

.feature-list-rich i {
  margin-top: 3px;
  color: var(--green);
}

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

.download-card {
  min-height: 92px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 14px;
  padding: 16px;
  border: 1px solid rgba(45, 224, 255, .24);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .045));
  color: #fff;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 16px 40px rgba(0,0,0,.18);
}

.download-card i {
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--blue), var(--violet));
  color: #fff;
  font-size: 23px;
}

.download-card strong {
  font-size: 15px;
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: 0;
}

.download-card span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
}

.download-card:hover {
  border-color: rgba(45, 224, 255, .54);
  transform: translateY(-2px);
}

.work-grid,
.related-grid,
.service-stats {
  display: grid;
  gap: 12px;
}

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

.work-grid article,
.related-grid article,
.service-stats span,
.service-mini-card {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
}

.work-grid article,
.related-grid article {
  padding: 16px;
}

.work-grid i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(45, 224, 255, .12);
  color: var(--cyan);
}

.work-grid img {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
  margin-bottom: 12px;
  padding: 7px;
  border-radius: 12px;
  background: rgba(45, 224, 255, .1);
}

.work-grid strong,
.related-grid strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0;
}

.work-grid p,
.related-grid p {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
  letter-spacing: 0;
}

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

.related-grid img {
  width: 100%;
  height: 112px;
  display: block;
  object-fit: cover;
  margin-bottom: 14px;
  border-radius: 11px;
}

.service-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.service-stats span {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
}

.service-stats strong {
  color: #fff;
  font-size: 26px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.service-stats small {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 850;
  letter-spacing: 0;
}

.service-side {
  min-width: 0;
  position: sticky;
  top: 20px;
  align-self: start;
}

.service-visual {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 24px 70px rgba(0,0,0,.28);
}

.service-visual:before,
.service-visual:after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.service-visual:before {
  width: 190px;
  height: 190px;
  right: -54px;
  top: -48px;
  background: rgba(255, 255, 255, .18);
}

.service-visual:after {
  width: 220px;
  height: 90px;
  left: 24px;
  bottom: 34px;
  border: 1px solid rgba(255,255,255,.16);
  transform: rotate(-12deg);
}

.service-visual i {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 34px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22);
}

.service-visual strong,
.service-visual span {
  position: relative;
  z-index: 1;
  display: block;
}

.service-visual strong {
  color: #fff;
  font-size: 26px;
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: 0;
}

.service-visual span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .78);
  font-weight: 850;
  letter-spacing: 0;
}

.visual-cyan { background: linear-gradient(145deg, #073b4a, #101936 58%, #0a7890); }
.visual-blue { background: linear-gradient(145deg, #082f6e, #101936 58%, #1978ff); }
.visual-violet { background: linear-gradient(145deg, #321a68, #101936 58%, #8f4cff); }
.visual-green { background: linear-gradient(145deg, #073f30, #101936 58%, #18bf70); }
.visual-orange { background: linear-gradient(145deg, #71380a, #101936 58%, #ffad32); }
.visual-indigo { background: linear-gradient(145deg, #251a68, #101936 58%, #6157ff); }

.service-highlights {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.service-highlights span {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  color: #e7f1ff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
}

.service-highlights i {
  color: var(--green);
}

.service-mini-card {
  margin-top: 14px;
  padding: 16px;
}

.service-mini-card strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0;
}

.service-mini-card span {
  display: block;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #dce8ff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
}

.seo-landing-shell {
  min-height: 100vh;
  padding: 22px;
  background:
    radial-gradient(circle at 14% 10%, rgba(45, 224, 255, .18), transparent 28%),
    radial-gradient(circle at 88% 6%, rgba(143, 76, 255, .18), transparent 32%),
    linear-gradient(145deg, #071223 0%, #0a1328 46%, #081b2f 100%);
  color: var(--text);
}

.seo-topbar {
  max-width: 1180px;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto 20px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(6, 13, 28, .72);
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
}

.seo-brand,
.seo-topbar nav,
.seo-topbar nav a {
  display: inline-flex;
  align-items: center;
}

.seo-brand {
  gap: 10px;
  color: #fff;
  font-weight: 950;
}

.seo-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.seo-topbar nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.seo-topbar nav a {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  color: #dbe8ff;
  font-size: 12px;
  font-weight: 900;
}

.seo-landing-page {
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: rgba(8, 17, 35, .82);
  box-shadow: 0 28px 90px rgba(0,0,0,.34);
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .75fr);
  gap: 28px;
  padding: 42px;
}

.seo-hero h1 {
  max-width: 720px;
  margin: 18px 0 14px;
  color: #fff;
  font-size: 46px;
  line-height: 1.04;
  letter-spacing: 0;
}

.seo-hero p,
.seo-section p,
.seo-feature-list li,
.seo-faq p {
  color: #d4e0f2;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.7;
}

.seo-hero figure {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.06);
}

.seo-hero img {
  width: 100%;
  max-height: 360px;
  display: block;
  object-fit: cover;
  border-radius: 16px;
}

.seo-hero figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.seo-section,
.seo-grid {
  padding: 0 42px 34px;
}

.seo-section h2,
.seo-grid h3 {
  color: #fff;
  letter-spacing: 0;
}

.seo-section h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

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

.seo-grid article,
.seo-faq details,
.seo-related a {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
}

.seo-grid article {
  padding: 18px;
  border-radius: 16px;
}

.seo-grid i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--cyan), var(--violet));
  color: #fff;
  font-size: 20px;
}

.blog-light-shell {
  min-height: 100vh;
  padding: 22px;
  background:
    linear-gradient(rgba(14, 56, 86, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 56, 86, .055) 1px, transparent 1px),
    radial-gradient(circle at 10% 0%, rgba(30, 214, 197, .22), transparent 26%),
    radial-gradient(circle at 92% 10%, rgba(73, 115, 255, .18), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #eef7ff 58%, #f7fbff 100%);
  background-size: 46px 46px, 46px 46px, auto, auto, auto;
  color: #172033;
}

.blog-light-topbar {
  max-width: 1180px;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto 20px;
  padding: 10px 14px;
  border: 1px solid rgba(45, 71, 110, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 44px rgba(35, 61, 92, .12);
  backdrop-filter: blur(18px);
}

.blog-light-brand,
.blog-light-nav,
.blog-light-nav a {
  display: inline-flex;
  align-items: center;
}

.blog-light-brand {
  gap: 10px;
  color: #14233c;
  font-weight: 950;
}

.blog-light-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.blog-light-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.blog-light-nav a {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(37, 67, 111, .12);
  border-radius: 8px;
  color: #324760;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
}

.blog-light-nav a:hover,
.blog-light-nav a:focus-visible {
  color: #0f8c84;
  border-color: rgba(21, 179, 169, .4);
}

.blog-light-page {
  max-width: 1180px;
  margin: 0 auto;
}

.blog-light-hero {
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .82fr);
  gap: 28px;
  align-items: center;
  padding: 36px 0 22px;
}

.blog-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(12, 164, 154, .2);
  border-radius: 8px;
  color: #0d8f86;
  background: rgba(21, 195, 181, .1);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.blog-hero-copy h1 {
  max-width: 760px;
  margin: 18px 0 14px;
  color: #101a2d;
  font-size: 52px;
  line-height: 1.03;
  letter-spacing: 0;
}

.blog-hero-copy p {
  max-width: 690px;
  margin: 0;
  color: #53647a;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

.blog-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.blog-stats span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid rgba(43, 77, 112, .12);
  border-radius: 8px;
  color: #435772;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 24px rgba(40, 68, 101, .08);
  font-size: 12px;
  font-weight: 900;
}

.blog-stats strong {
  color: #111c31;
}

.blog-hero-visual {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(35, 60, 92, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(35, 60, 92, .16);
}

.blog-hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.blog-hero-visual figcaption {
  margin-top: 10px;
  color: #5d6d82;
  font-size: 12px;
  font-weight: 850;
}

.blog-search-band {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin: 8px 0 22px;
  padding: 14px;
  border: 1px solid rgba(35, 60, 92, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 48px rgba(35, 60, 92, .1);
}

.blog-search-panel {
  position: relative;
  min-width: 0;
}

.blog-search-wrap {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 8px 7px 16px;
  border: 1px solid rgba(40, 73, 111, .13);
  border-radius: 8px;
  background: #f7fbff;
}

.blog-search-wrap i {
  color: #0ea9a0;
}

.blog-search-wrap input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #15223a;
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
}

.blog-search-wrap input::placeholder {
  color: #7d8ca0;
}

.blog-search-btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 14px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #0fb9aa, #3978ff);
  box-shadow: 0 10px 24px rgba(36, 109, 255, .18);
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.blog-search-btn i {
  color: #fff;
}

.blog-search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 20;
  overflow: hidden;
  border: 1px solid rgba(35, 60, 92, .14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(35, 60, 92, .18);
}

.blog-suggestion,
.blog-suggestion-empty {
  width: 100%;
  padding: 13px 14px;
  text-align: left;
}

.blog-suggestion {
  display: grid;
  gap: 4px;
  color: #172033;
  border-bottom: 1px solid rgba(35, 60, 92, .08);
  background: #fff;
}

.blog-suggestion:last-child {
  border-bottom: 0;
}

.blog-suggestion:hover,
.blog-suggestion:focus-visible {
  background: #eef8ff;
}

.blog-suggestion strong {
  font-size: 14px;
  font-weight: 950;
}

.blog-suggestion small,
.blog-suggestion-empty {
  color: #697a90;
  font-size: 12px;
  font-weight: 850;
}

.blog-filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.blog-chip {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(38, 70, 112, .14);
  border-radius: 8px;
  color: #3d5169;
  background: #fff;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}

.blog-chip.active,
.blog-chip:hover,
.blog-chip:focus-visible {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #0fb9aa, #3978ff);
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: center;
  margin-bottom: 22px;
  padding: 24px;
  border: 1px solid rgba(18, 142, 132, .16);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #eefdfb 52%, #eef5ff 100%);
  box-shadow: 0 22px 64px rgba(28, 78, 112, .12);
}

.blog-featured h2 {
  margin: 14px 0 10px;
  color: #101a2d;
  font-size: 32px;
  line-height: 1.14;
  letter-spacing: 0;
}

.blog-featured p {
  max-width: 680px;
  color: #51627a;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.7;
}

.blog-featured img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(33, 70, 98, .16);
}

.blog-primary-link,
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, #246dff, #8a4eff);
  font-weight: 950;
}

.blog-primary-link {
  margin-top: 6px;
  padding: 0 16px;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 34px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid rgba(35, 60, 92, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 44px rgba(35, 60, 92, .1);
}

.blog-card[hidden],
.blog-featured[hidden] {
  display: none;
}

.blog-card-media {
  position: relative;
  display: block;
  background: #e9f5ff;
}

.blog-card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
}

.blog-card-media span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #13b9ab, #3978ff);
  box-shadow: 0 10px 26px rgba(21, 95, 150, .22);
}

.blog-card-body {
  padding: 16px;
}

.blog-card small {
  color: #0e938a;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.blog-card h2 {
  margin: 9px 0 9px;
  font-size: 20px;
  line-height: 1.22;
  letter-spacing: 0;
}

.blog-card h2 a {
  color: #121d31;
}

.blog-card p {
  margin: 0 0 14px;
  color: #5b6c82;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.62;
}

.blog-card-link {
  min-height: 38px;
  padding: 0 13px;
  font-size: 12px;
}

.blog-no-results {
  margin: 0 0 34px;
  padding: 18px;
  border: 1px solid rgba(228, 71, 112, .18);
  border-radius: 8px;
  color: #9f294c;
  background: #fff2f6;
  font-weight: 900;
  text-align: center;
}

.seo-feature-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-feature-list li {
  position: relative;
  padding-left: 28px;
}

.seo-feature-list li:before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--green);
  font-family: FontAwesome;
}

.product-download-panel {
  border-color: rgba(45, 224, 255, .26);
  background:
    linear-gradient(135deg, rgba(45, 224, 255, .13), rgba(143, 76, 255, .13)),
    rgba(9, 18, 35, .76);
}

.product-download-panel .service-actions {
  margin-top: 18px;
}

.product-download-panel .btn i {
  margin-right: 8px;
}

.seo-faq {
  display: grid;
  gap: 10px;
}

.seo-faq details {
  padding: 14px 16px;
  border-radius: 14px;
}

.seo-faq summary {
  color: #fff;
  cursor: pointer;
  font-weight: 950;
}

.seo-related {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-related a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: #eaf4ff;
  font-size: 12px;
  font-weight: 900;
}

.widget-window {
  border-radius: 22px;
  resize: none;
  min-width: 240px;
  min-height: 150px;
  background:
    radial-gradient(circle at 18% 10%, rgba(45, 224, 255, .26), transparent 34%),
    linear-gradient(145deg, rgba(12, 24, 46, .9), rgba(7, 13, 26, .78));
}

.speed-window {
  border-radius: 22px;
  resize: none;
  min-width: 300px;
  min-height: 292px;
  background:
    radial-gradient(circle at 14% 12%, rgba(53, 223, 141, .22), transparent 34%),
    linear-gradient(145deg, rgba(12, 24, 46, .9), rgba(7, 13, 26, .78));
}

.desktop-logo-widget {
  position: absolute;
  right: 66px;
  top: 72px;
  z-index: 3;
  width: 326px;
  display: grid;
  place-items: center;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(7, 13, 26, .58);
  box-shadow: 0 18px 55px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.desktop-logo-widget img {
  width: 252px;
  display: block;
  filter: drop-shadow(0 0 16px rgba(45, 224, 255, .24));
}

.widget-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.speed-content {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.speed-head,
.speed-results,
.speed-readout {
  position: relative;
  z-index: 2;
}

.speed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.speed-head span {
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.speed-head small,
.speed-readout small {
  color: #9fb2cc;
  font-size: 11px;
  font-weight: 850;
}

.speed-gauge {
  position: relative;
  width: 178px;
  height: 104px;
  margin: 2px auto 0;
  overflow: hidden;
}

.speed-arc {
  position: absolute;
  inset: 0;
  border-radius: 178px 178px 0 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(7, 13, 26, 1) 0 38%, transparent 39%),
    conic-gradient(from 238deg at 50% 100%, #35df8d 0deg, #2de0ff 84deg, #8247ff 165deg, rgba(255,255,255,.14) 166deg 244deg);
  box-shadow: inset 0 0 28px rgba(45, 224, 255, .18), 0 16px 42px rgba(45, 224, 255, .16);
}

@media (min-width: 992px) and (max-width: 1280px) {
  .home-window.active:not(.maximized),
  .welcome-window.active:not(.maximized) {
    left: 46px !important;
    top: 74px !important;
    width: min(560px, calc(100vw - 430px)) !important;
    height: min(500px, calc(100vh - 190px)) !important;
  }

  .desktop-logo-widget {
    right: 34px;
    top: 66px;
    width: 286px;
    padding: 10px 14px;
  }

  .desktop-logo-widget img {
    width: 220px;
  }

  .widget-window,
  .widget-window.active {
    left: auto !important;
    right: 34px !important;
    top: 158px !important;
    width: 286px !important;
    height: 142px !important;
    min-width: 286px;
    min-height: 142px;
  }

  .speed-window,
  .speed-window.active {
    left: auto !important;
    right: 34px !important;
    top: auto !important;
    bottom: 16px !important;
    width: 286px !important;
    height: clamp(150px, calc(100vh - 460px), 286px) !important;
    min-width: 286px;
    min-height: 0 !important;
  }

  .widget-content {
    padding: 18px;
  }

  .widget-content strong {
    font-size: 34px;
  }

  .speed-content {
    padding: 14px;
    gap: 9px;
  }

  .speed-readout strong {
    font-size: 34px;
  }

  .speed-results div {
    padding: 8px;
  }
}

.speed-ticks {
  position: absolute;
  inset: 16px 1px 0;
  display: flex;
  justify-content: space-between;
  color: rgba(225, 238, 255, .7);
  font-size: 9px;
  font-weight: 950;
}

.speed-needle {
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 4px;
  height: 78px;
  border-radius: 999px;
  background: linear-gradient(#fff, #35df8d);
  box-shadow: 0 0 18px rgba(53, 223, 141, .72);
  transform-origin: 50% 100%;
  transform: translateX(-50%) rotate(-118deg);
  transition: transform .55s cubic-bezier(.2,.9,.2,1);
}

.speed-window.is-testing .speed-needle {
  animation: speedSweep 1.1s ease-in-out infinite alternate;
}

.speed-center {
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 76px;
  height: 48px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 18px 18px 8px 8px;
  background: rgba(7, 13, 26, .86);
  border: 1px solid rgba(255,255,255,.12);
}

.speed-center strong,
.speed-readout strong,
.speed-results strong {
  color: #fff;
  font-weight: 950;
  letter-spacing: 0;
}

.speed-center strong {
  font-size: 17px;
  line-height: 1;
}

.speed-center small {
  margin-top: 2px;
  color: #9fb2cc;
  font-size: 9px;
  font-weight: 850;
}

.speed-readout {
  text-align: center;
}

.speed-readout strong {
  display: block;
  color: #fff;
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.speed-readout small {
  display: block;
  margin-top: 10px;
}

.speed-number-only {
  flex: 1;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 118px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 10%, rgba(45, 224, 255, .18), transparent 48%),
    rgba(255,255,255,.055);
}

.speed-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.speed-results div {
  padding: 9px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
}

.speed-results i {
  color: #2de0ff;
  font-size: 12px;
}

.speed-results span,
.speed-results strong {
  display: block;
}

.speed-results span {
  margin-top: 4px;
  color: #9fb2cc;
  font-size: 10px;
  font-weight: 850;
}

.speed-results strong {
  margin-top: 3px;
  font-size: 13px;
}

.speed-confidence {
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(183, 246, 92, .13), rgba(45, 224, 255, .08));
  color: #e7fff6;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
}

.speed-content button {
  width: 100%;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(53, 223, 141, .34);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(53, 223, 141, .28), rgba(45, 224, 255, .12));
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.speed-content button:disabled {
  cursor: wait;
  opacity: .72;
}


@keyframes speedSweep {
  0% { transform: translateX(-50%) rotate(-112deg); }
  100% { transform: translateX(-50%) rotate(108deg); }
}

.speed-content button:disabled {
  cursor: wait;
  opacity: .6;
}

.speed-content button i {
  font-size: 20px;
  color: #35df8d;
}

.widget-content strong,
.widget-content span,
.widget-content small {
  display: block;
}

.widget-content strong { font-size: 42px; line-height: 1; font-weight: 950; letter-spacing: 0; }
.widget-content span { margin-top: 8px; color: #dce8ff; font-weight: 850; letter-spacing: 0; }
.widget-content small { margin-top: 16px; color: #b8c7dc; font-size: 13px; font-weight: 750; letter-spacing: 0; }

.dock {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 210;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  min-height: 84px;
  max-width: calc(100vw - 28px);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .34);
  backdrop-filter: blur(24px);
  transform: translateX(-50%);
  overflow: visible;
  transition: width .28s ease, padding .28s ease, transform .28s ease;
  scrollbar-width: none;
}

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

.dock-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 10px 28px rgba(0, 0, 0, .28);
  transform-origin: bottom center;
  transition: transform .18s cubic-bezier(.2,.8,.2,1), filter .18s ease, margin .18s ease;
}

.dock-icon i {
  color: var(--icon-ink, #fff);
  text-shadow: 0 2px 8px rgba(0, 0, 0, .28), 0 0 18px var(--icon-glow, rgba(255, 255, 255, .36));
}

.dock-icon:hover {
  z-index: 5;
  transform: translateY(-13px) scale(1.34);
  filter: saturate(1.15) brightness(1.08);
  margin: 0 8px;
}

.dock-icon span {
  display: none;
}

.dock-separator {
  width: 1px;
  height: 46px;
  flex: 0 0 1px;
  margin: 0 2px;
  background: rgba(255, 255, 255, .28);
}

.dock:has(.dock-minimized:empty) .dock-separator,
.dock-minimized:empty {
  display: none;
}

.dock-minimized {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.minimized-icon {
  width: 68px;
  height: 48px;
  flex: 0 0 68px;
  display: grid;
  place-items: center;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,.2), rgba(255,255,255,.08));
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.1;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 10px 28px rgba(0,0,0,.24);
  transform-origin: bottom center;
  transition: transform .18s cubic-bezier(.2,.8,.2,1), margin .18s ease;
}

.minimized-icon:hover {
  transform: translateY(-10px) scale(1.15);
  margin: 0 6px;
}

.dock-tooltip {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  display: none;
  max-width: min(260px, calc(100vw - 24px));
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 9px;
  background: rgba(5, 11, 22, .96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .36);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
  transform: translate(-50%, -100%);
}

.dock-tooltip.visible {
  display: block;
}

.icon-software { background: linear-gradient(145deg, #7b61ff, #271a77); }
.icon-home { background: linear-gradient(145deg, #39e59b, #116a4e); }
.icon-speed { background: linear-gradient(145deg, #b7f65c, #15854a); }
.icon-website { background: linear-gradient(145deg, #18d7ff, #064f73); }
.icon-antivirus { background: linear-gradient(145deg, #29e986, #07553c); }
.icon-vpn { background: linear-gradient(145deg, #5f72ff, #202b91); }
.icon-transfer { background: linear-gradient(145deg, #35d9ff, #744cff); }
.icon-recovery { background: linear-gradient(145deg, #29a3ff, #093e7d); }
.icon-cricket { background: linear-gradient(145deg, #ffbe3d, #8a3e00); }
.icon-contact { background: linear-gradient(145deg, #23d6c8, #07585a); }
.icon-privacy { background: linear-gradient(145deg, #6f7dff, #2b2c72); }
.icon-terms { background: linear-gradient(145deg, #ff6f91, #7a1230); }

.icon-home { --icon-ink: #ecfff7; --icon-glow: rgba(70, 255, 176, .72); }
.icon-contact { --icon-ink: #d8fffb; --icon-glow: rgba(35, 214, 200, .72); }
.icon-software { --icon-ink: #fff3b8; --icon-glow: rgba(255, 224, 106, .7); }
.icon-speed { --icon-ink: #f7ffe1; --icon-glow: rgba(183, 246, 92, .78); }
.icon-website { --icon-ink: #e9fbff; --icon-glow: rgba(46, 234, 255, .72); }
.icon-antivirus { --icon-ink: #dcffe9; --icon-glow: rgba(56, 238, 147, .72); }
.icon-vpn { --icon-ink: #eff1ff; --icon-glow: rgba(135, 150, 255, .76); }
.icon-transfer { --icon-ink: #fff1ff; --icon-glow: rgba(189, 114, 255, .72); }
.icon-recovery { --icon-ink: #e1f5ff; --icon-glow: rgba(52, 201, 255, .72); }
.icon-cricket { --icon-ink: #fff8d8; --icon-glow: rgba(255, 190, 61, .74); }
.icon-privacy { --icon-ink: #e8ecff; --icon-glow: rgba(140, 163, 201, .72); }
.icon-terms { --icon-ink: #fff1f6; --icon-glow: rgba(255, 122, 165, .7); }

.mobile-home-screen {
  display: none;
}

.mobile-home-screen::before {
  content: "Pull down to refresh";
  position: sticky;
  top: 0;
  z-index: 2;
  display: none;
  width: max-content;
  margin: 0 auto 10px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(5, 11, 22, .62);
  color: rgba(255, 255, 255, .82);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  backdrop-filter: blur(14px);
}

.mobile-home-screen.pull-refresh-ready::before {
  content: "Release to refresh";
  display: block;
}

.mobile-hero-card,
.mobile-quick-card {
  border: 1px solid rgba(255, 255, 255, .16);
  background: linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .07));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 18px 44px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
}

.mobile-hero-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border-radius: 24px;
  color: #fff;
}

.mobile-hero-card img {
  width: 92px;
  height: 62px;
  object-fit: contain;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(6, 16, 30, .9), rgba(22, 39, 66, .78));
  padding: 6px;
}

.mobile-hero-card strong,
.mobile-quick-card strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0;
}

.mobile-hero-card span,
.mobile-quick-card span {
  display: block;
  margin-top: 4px;
  color: rgba(238, 244, 255, .78);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.mobile-quick-card {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 20px;
}

.mobile-terminal-card strong {
  font-size: 14px;
  line-height: 1.35;
}

.mobile-terminal-card p {
  margin: 9px 0 0;
  color: rgba(238, 244, 255, .76);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.45;
}

  .mobile-app-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 9px;
    margin-top: 22px;
  }

.mobile-app-button {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  text-align: center;
  cursor: pointer;
}

.mobile-app-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 0 auto 7px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  color: #fff;
  font-size: 25px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28), 0 12px 26px rgba(0, 0, 0, .24);
}

.mobile-app-icon i {
  color: var(--mobile-icon-ink, #fff);
  text-shadow: 0 2px 8px rgba(0, 0, 0, .28), 0 0 18px var(--mobile-icon-glow, rgba(255, 255, 255, .34));
}

.mobile-app-label {
  display: block;
  color: rgba(255, 255, 255, .96);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .36);
  overflow-wrap: anywhere;
}

.tone-blue .mobile-app-icon { background: linear-gradient(145deg, #69d5ff, #2c5bff); }
.tone-purple .mobile-app-icon { background: linear-gradient(145deg, #9d72ff, #5327e8); }
.tone-cyan .mobile-app-icon { background: linear-gradient(145deg, #2eeaff, #0570a8); }
.tone-orange .mobile-app-icon { background: linear-gradient(145deg, #ffcb55, #ef6f2d); }
.tone-green .mobile-app-icon { background: linear-gradient(145deg, #38ee93, #07864c); }
.tone-indigo .mobile-app-icon { background: linear-gradient(145deg, #6e85ff, #2d35b8); }
.tone-sky .mobile-app-icon { background: linear-gradient(145deg, #34c9ff, #1764c8); }
.tone-aqua .mobile-app-icon { background: linear-gradient(145deg, #32e3c5, #345bff); }
.tone-violet .mobile-app-icon { background: linear-gradient(145deg, #bd72ff, #6236c9); }
.tone-lime .mobile-app-icon { background: linear-gradient(145deg, #a6f45c, #1f9d55); }
.tone-amber .mobile-app-icon { background: linear-gradient(145deg, #ffe06a, #d78305); }
.tone-teal .mobile-app-icon { background: linear-gradient(145deg, #2bd9c8, #096b75); }
.tone-slate .mobile-app-icon { background: linear-gradient(145deg, #8ca3c9, #34435f); }
.tone-rose .mobile-app-icon { background: linear-gradient(145deg, #ff7aa5, #c6255f); }

.tone-blue { --mobile-icon-ink: #ecf7ff; --mobile-icon-glow: rgba(105, 213, 255, .72); }
.tone-purple { --mobile-icon-ink: #fff1b8; --mobile-icon-glow: rgba(255, 224, 106, .76); }
.tone-cyan { --mobile-icon-ink: #e9fdff; --mobile-icon-glow: rgba(46, 234, 255, .75); }
.tone-orange { --mobile-icon-ink: #fff7dc; --mobile-icon-glow: rgba(255, 203, 85, .76); }
.tone-green { --mobile-icon-ink: #e2ffef; --mobile-icon-glow: rgba(56, 238, 147, .76); }
.tone-indigo { --mobile-icon-ink: #f1f3ff; --mobile-icon-glow: rgba(126, 143, 255, .76); }
.tone-sky { --mobile-icon-ink: #e5f8ff; --mobile-icon-glow: rgba(52, 201, 255, .74); }
.tone-aqua { --mobile-icon-ink: #e3fffb; --mobile-icon-glow: rgba(50, 227, 197, .76); }
.tone-violet { --mobile-icon-ink: #fff0ff; --mobile-icon-glow: rgba(189, 114, 255, .76); }
.tone-lime { --mobile-icon-ink: #f4ffe7; --mobile-icon-glow: rgba(166, 244, 92, .78); }
.tone-amber { --mobile-icon-ink: #fff8da; --mobile-icon-glow: rgba(255, 224, 106, .78); }
.tone-teal { --mobile-icon-ink: #e3fffc; --mobile-icon-glow: rgba(43, 217, 200, .76); }
.tone-slate { --mobile-icon-ink: #f2f6ff; --mobile-icon-glow: rgba(140, 163, 201, .72); }
.tone-rose { --mobile-icon-ink: #fff0f6; --mobile-icon-glow: rgba(255, 122, 165, .74); }

@media (max-width: 991px) {
  .topbar {
    padding: 0 14px;
    gap: 12px;
    font-size: 12px;
  }

  .topbar-left {
    gap: 12px;
  }

  .workspace {
    inset: 42px 0 88px;
  }

  .app-window {
    min-width: 0;
  }

  .app-window.maximized {
    left: 12px !important;
    top: 12px !important;
    width: calc(100vw - 24px) !important;
    height: calc(100% - 24px) !important;
    resize: none;
  }

  .product-window {
    display: none;
  }

  .home-window.active {
    display: flex;
  }

  .welcome-window.active:not(.maximized) {
    left: 12px;
    top: 268px;
    width: calc(100vw - 24px);
    height: min(430px, calc(100vh - 382px));
    min-height: 320px;
    resize: none;
  }

  .widget-window,
  .widget-window.active {
    left: auto !important;
    right: 12px !important;
    top: 154px !important;
    width: 244px !important;
    height: 112px !important;
    min-width: 244px;
    min-height: 112px;
    display: flex;
  }

  .speed-window,
  .speed-window.active {
    left: auto !important;
    right: 12px !important;
    top: 280px !important;
    width: 244px !important;
    height: 300px !important;
    min-width: 244px;
    min-height: 300px;
    display: flex;
  }

  .desktop-logo-widget {
    right: 12px;
    top: 56px;
    width: 244px;
    padding: 10px 14px;
    border-radius: 16px;
  }

  .desktop-logo-widget img {
    width: 198px;
  }

  .widget-content {
    padding: 15px;
  }

  .speed-content {
    padding: 13px;
    gap: 9px;
  }

  .speed-gauge {
    width: 150px;
    height: 90px;
  }

  .speed-needle {
    height: 66px;
  }

  .speed-readout strong {
    display: block;
    font-size: 32px;
  }

  .speed-results {
    gap: 6px;
  }

  .speed-results div {
    padding: 7px;
  }

  .speed-content button {
    width: 100%;
    height: 38px;
  }

  .widget-content strong {
    font-size: 30px;
  }

  .widget-content span {
    margin-top: 5px;
    font-size: 12px;
  }

  .widget-content small {
    margin-top: 9px;
    font-size: 11px;
  }

  .hero-content,
  .window-content {
    padding: 26px;
  }

  .about-content {
    padding: 0;
  }

  .about-hero,
  .about-section,
  .about-split,
  .about-strip {
    padding: 24px;
  }

  .about-hero,
  .about-split {
    grid-template-columns: 1fr;
  }

  .about-hero h2 {
    font-size: 31px;
  }

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

  .service-content {
    padding: 0;
  }

  .service-page {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .service-page h2 {
    font-size: 30px;
  }

  .software-sales-page h2 {
    font-size: 32px;
  }

  .software-product-grid {
    grid-template-columns: 1fr;
  }

  .topic-visual {
    grid-template-columns: 1fr;
  }

  .service-visual {
    min-height: 210px;
  }

  .service-side {
    position: static;
  }

  .work-grid,
  .related-grid,
  .service-stats {
    grid-template-columns: 1fr;
  }

  h1 { font-size: 30px; }
  h2 { font-size: 26px; }

  .dock {
    bottom: 10px;
    gap: 9px;
    min-height: 84px;
    padding: 10px;
    border-radius: 22px;
    overflow: visible;
    left: 8px;
    right: 8px;
    width: calc(100vw - 16px);
    max-width: none;
    transform: none;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .dock-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    border-radius: 15px;
    font-size: 20px;
  }

  .dock-icon:hover {
    transform: translateY(-8px) scale(1.12);
    margin: 0 2px;
  }

  .dock-separator {
    height: 40px;
  }

  .minimized-icon {
    width: 58px;
    flex-basis: 58px;
    height: 42px;
    font-size: 10px;
  }
}

@media (max-width: 575px) {
  :root {
    --mobile-dock-safe-bottom: env(safe-area-inset-bottom, 0px);
  }

  .hero-logo { width: 155px; }
  .welcome-window .hero-logo { width: 142px; }
  .desktop-shell {
    background:
      radial-gradient(circle at 18% 14%, rgba(50, 232, 197, .32), transparent 30%),
      radial-gradient(circle at 78% 4%, rgba(123, 97, 255, .28), transparent 34%),
      linear-gradient(155deg, #071223 0%, #0d2742 45%, #111936 100%);
  }

  .topbar {
    display: none;
  }

  .topbar-left {
    overflow-x: auto;
  }

  .topbar-right {
    display: none;
  }

  .workspace {
    inset: 0 0 calc(86px + var(--mobile-dock-safe-bottom));
    pointer-events: none;
  }

  .mobile-home-screen {
    position: absolute;
    inset: 0 0 calc(86px + var(--mobile-dock-safe-bottom));
    z-index: 1;
    display: block;
    padding: 18px 14px calc(118px + var(--mobile-dock-safe-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
  }

  .home-window.active,
  .welcome-window.active,
  .widget-window.active,
  .speed-window.active,
  .desktop-logo-widget {
    display: none;
  }

  .speed-window.active.maximized {
    display: flex;
    left: 8px !important;
    top: 8px !important;
    width: calc(100vw - 16px) !important;
    height: calc(100% - 16px) !important;
    border-radius: 22px;
  }

  .app-window.active {
    pointer-events: auto;
  }

  .app-window.maximized,
  .app-window.active:not(.home-window):not(.welcome-window):not(.widget-window):not(.speed-window) {
    left: 8px !important;
    top: 8px !important;
    width: calc(100vw - 16px) !important;
    height: calc(100% - 16px) !important;
    max-height: calc(100% - 16px);
    border-radius: 22px;
  }

  .app-window.active:not(.home-window):not(.welcome-window):not(.widget-window):not(.speed-window) .window-content {
    overflow-y: auto;
  }

  .dock {
    position: fixed;
    bottom: var(--mobile-dock-safe-bottom);
    min-height: 76px;
    padding: 9px;
    border-radius: 27px;
    gap: 9px;
  }

  .dock-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    border-radius: 16px;
    font-size: 22px;
  }

  .dock-icon:hover {
    transform: translateY(-7px) scale(1.1);
    margin: 0 1px;
  }

  .dock-separator,
  .dock-minimized {
    display: none;
  }

  .about-hero,
  .about-section,
  .about-split,
  .about-strip {
    padding: 18px;
  }
  .about-hero h2 {
    font-size: 26px;
  }
  .about-grid,
  .about-strip {
    grid-template-columns: 1fr;
  }
  .about-hero img {
    min-height: 210px;
  }
  .product-grid { grid-template-columns: 1fr; }
  .software-sales-page { padding: 18px; }
  .software-product-media { height: 170px; }
  .hero-actions { display: grid; }
  .seo-landing-shell { padding: 12px; }
  .seo-topbar,
  .seo-hero {
    display: grid;
    grid-template-columns: 1fr;
  }
  .seo-topbar nav { justify-content: flex-start; }
  .seo-hero,
  .seo-section,
  .seo-grid {
    padding: 22px;
  }
  .seo-hero h1 {
    font-size: 33px;
  }
  .seo-grid {
    grid-template-columns: 1fr;
  }
  .seo-hero img {
    max-height: 230px;
  }
  .blog-light-shell {
    padding: 12px;
  }
  .blog-light-topbar,
  .blog-light-hero,
  .blog-search-band,
  .blog-featured {
    display: grid;
    grid-template-columns: 1fr;
  }
  .blog-light-nav,
  .blog-filter-row {
    justify-content: flex-start;
  }
  .blog-light-hero {
    min-height: auto;
    gap: 18px;
    padding: 18px 0;
  }
  .blog-hero-copy h1 {
    font-size: 34px;
  }
  .blog-hero-copy p {
    font-size: 15px;
  }
  .blog-search-band,
  .blog-featured {
    padding: 12px;
  }
  .blog-search-wrap {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
  }
  .blog-search-btn {
    grid-column: 1 / -1;
    width: 100%;
  }
  .blog-featured h2 {
    font-size: 25px;
  }
  .blog-card-grid {
    grid-template-columns: 1fr;
  }
  .blog-stats span,
  .blog-chip,
  .blog-light-nav a {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 701px) and (max-width: 1024px) {
  .blog-light-hero,
  .blog-featured {
    grid-template-columns: 1fr;
  }
  .blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-search-band {
    grid-template-columns: 1fr;
  }
  .blog-filter-row {
    justify-content: flex-start;
  }
}

@media (max-width: 575px) and (hover: none) and (pointer: coarse) {
  .dock {
    box-shadow: 0 18px 55px rgba(0, 0, 0, .34);
  }
}
