*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
:root {
  --bg: #0d0b1e;
  --bg2: #111029;
  --bg3: #161433;
  --card: #1a1840;
  --card2: #1e1c44;
  --bord: rgba(255, 255, 255, 0.07);
  --bord2: rgba(255, 255, 255, 0.12);
  --text: #e8e5ff;
  --sub: rgba(232, 229, 255, 0.5);
  --dim: rgba(232, 229, 255, 0.28);
  --acc: #6c5fff;
  --acc2: #00c2ff;
  --nav-bg: rgba(13, 11, 30, 0.92);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --mono: "JetBrains Mono", monospace;
}
[data-theme="light"] {
  --bg: #fafaf8;
  --bg2: #f3f2ee;
  --bg3: #eceae3;
  --card: #fff;
  --card2: #f7f6f2;
  --bord: rgba(0, 0, 0, 0.07);
  --bord2: rgba(0, 0, 0, 0.12);
  --text: #0e0d0b;
  --sub: #7a7870;
  --dim: #aaa89e;
  --acc: #5448ee;
  --acc2: #0099cc;
  --nav-bg: rgba(250, 250, 248, 0.92);
}
[data-theme="light"] .s-mesh {
  background: #f0effe;
}
[data-theme="light"] .s-stats {
  background: #f0eefc;
}
[data-theme="light"] #mcanvas {
  filter: invert(1) hue-rotate(180deg) saturate(0.5);
  opacity: 0.4;
}
[data-theme="light"] .s-smm {
  background: #fff8f0;
}
[data-theme="light"] .spcol:first-child {
  background: rgba(84, 72, 238, 0.05);
}
[data-theme="light"] .spcol:last-child {
  background: rgba(0, 153, 204, 0.04);
}
[data-theme="light"] .browser {
  box-shadow:
    0 -4px 40px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.07);
  background: #fff;
}
[data-theme="light"] .bbar {
  background: #f4f4f4;
  border-bottom-color: #eaeaea;
}
[data-theme="light"] .burl {
  background: #fff;
  border-color: #e0e0e0;
  color: #999;
}
[data-theme="light"] .bscroll {
  background: #fafafa;
}
[data-theme="light"] .bpnav {
  border-bottom-color: #eee;
}
[data-theme="light"] .bpn-lg {
  background: #ddd;
}
[data-theme="light"] .bpn-l {
  background: #eee;
}
[data-theme="light"] .bphero {
  background: linear-gradient(135deg, #eeeaff, #e4f1ff);
  border-color: rgba(84, 72, 238, 0.2);
}
[data-theme="light"] .bph-tag {
  background: rgba(84, 72, 238, 0.25);
}
[data-theme="light"] .bph-h1 {
  background: rgba(84, 72, 238, 0.2);
}
[data-theme="light"] .bph-h2 {
  background: rgba(84, 72, 238, 0.12);
}
[data-theme="light"] .bpc {
  background: #f8f8f8;
  border-color: #eee;
}
[data-theme="light"] .bpc-top {
  background: #f0effe;
}
[data-theme="light"] .bpc-l {
  background: #eee;
}
[data-theme="light"] .bpc-l.a {
  background: rgba(84, 72, 238, 0.15);
}
[data-theme="light"] .smcard {
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
}
[data-theme="light"] .dmtb {
  background: #f8f8f8;
  border-bottom-color: #eee;
}
[data-theme="light"] .dmtool {
  background: #eee;
  color: #888;
}
[data-theme="light"] .dmcv {
  background: #f0effe;
}
[data-theme="light"] .dmframe {
  background: #fff;
  border-color: #eee;
}
[data-theme="light"] .dml {
  color: #555;
}
[data-theme="light"] .dml.sel {
  background: rgba(84, 72, 238, 0.08);
  color: #5448ee;
}
[data-theme="light"] .secitem {
  background: #f9f9f9;
  border-color: #f0f0f0;
}
[data-theme="light"] .siname {
  color: #444;
}
[data-theme="light"] .chip {
  background: rgba(84, 72, 238, 0.05);
  border-color: rgba(84, 72, 238, 0.15);
  color: #7a7870;
}
[data-theme="light"] .plan-card {
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}
[data-theme="light"] .bicard,
[data-theme="light"] .bccard,
[data-theme="light"] .btcard {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}
[data-theme="light"] .chan {
  background: #fff;
}
[data-theme="light"] .cform input,
[data-theme="light"] .cform select {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.12);
  color: #0e0d0b;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition:
    background 0.3s,
    color 0.3s;
}
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--acc);
  border-radius: 3px;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: 62px;
  display: flex;
  align-items: center;
  padding: 0 52px;
  transition:
    background 0.4s,
    border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.sc {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--bord);
}
.logo {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-acc {
  color: var(--acc);
}
.nl {
  display: flex;
  list-style: none;
  margin-left: 28px;
}
.nl a {
  font-size: 0.84rem;
  color: var(--sub);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 7px;
  transition:
    color 0.15s,
    background 0.15s;
}
.nl a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}
.nr {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-sw {
  display: flex;
  background: var(--bord);
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 5px 9px;
  border: none;
  background: transparent;
  color: var(--dim);
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.15s;
}
.lang-btn.on {
  background: var(--acc);
  color: #fff;
}
.lang-btn:hover:not(.on) {
  color: var(--text);
  background: var(--bord2);
}
.theme-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--bord2);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--sub);
  font-size: 15px;
  transition: all 0.15s;
}
.theme-btn:hover {
  background: var(--bord);
  color: var(--text);
}
.ngl {
  font-size: 0.84rem;
  color: var(--sub);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 7px;
  transition: color 0.15s;
}
.ngl:hover {
  color: var(--text);
}
.ncta {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 9px 20px;
  border: 1px solid var(--bord2);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  transition: all 0.15s;
  white-space: nowrap;
}
.ncta:hover {
  background: var(--acc);
  border-color: var(--acc);
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--bord2);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  padding: 9px;
  transition: background 0.15s;
}
.burger:hover {
  background: var(--bord);
}
.burger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}
.burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.mob-menu {
  display: none;
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--bord);
  padding: 16px;
  flex-direction: column;
  gap: 4px;
  z-index: 299;
}
.mob-menu.open {
  display: flex;
}
.mob-menu a {
  font-size: 0.92rem;
  color: var(--sub);
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 10px;
  transition:
    color 0.15s,
    background 0.15s;
}
.mob-menu a:hover {
  color: var(--text);
  background: var(--bord);
}
.mob-div {
  height: 1px;
  background: var(--bord);
  margin: 6px 0;
}
.mob-cta {
  background: var(--acc) !important;
  color: #fff !important;
  text-align: center;
  font-weight: 600 !important;
  margin-top: 2px;
}
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 52px 0;
  position: relative;
  overflow: hidden;
}
#wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 52%;
  z-index: 0;
}
.hft {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to bottom, var(--bg) 20%, transparent);
  z-index: 1;
  pointer-events: none;
}
.hfb {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28%;
  background: linear-gradient(to top, var(--bg), transparent);
  z-index: 1;
  pointer-events: none;
}
.hb {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
}
.hk {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.hk::before,
.hk::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--bord2);
}
h1 {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 8vw, 8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}
h1 em {
  font-style: italic;
  background: linear-gradient(100deg, #6c5fff 0%, #00c2ff 50%, #a78bfa 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gs 5s ease-in-out infinite alternate;
}
@keyframes gs {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}
.hs {
  font-size: 1.1rem;
  color: var(--sub);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.78;
  font-weight: 300;
}
.hba {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 90px;
}
.bf {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 13px 28px;
  background: var(--text);
  color: var(--bg);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.15s,
    transform 0.1s;
  letter-spacing: -0.01em;
}
.bf:hover {
  background: var(--acc);
  color: #fff;
}
.bf:active {
  transform: scale(0.98);
}
.bo {
  font-size: 0.9rem;
  font-weight: 400;
  padding: 13px 28px;
  background: transparent;
  color: var(--sub);
  border: 1px solid var(--bord2);
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.bo:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}
.domain-box {
  display: flex;
  max-width: 540px;
  margin: 0 auto 12px;
  border-radius: 100px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--bord2),
    0 8px 32px rgba(0, 0, 0, 0.2);
}
.domain-in {
  flex: 1;
  padding: 13px 22px;
  background: var(--card);
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--text);
  min-width: 0;
}
.domain-in::placeholder {
  color: var(--dim);
}
.domain-btn {
  padding: 13px 26px;
  background: var(--acc);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.domain-btn:hover {
  opacity: 0.85;
}
.domain-res {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-align: center;
  min-height: 22px;
  margin-bottom: 20px;
}
.domain-res.ok {
  color: #10b981;
}
.domain-res.no {
  color: #f59e0b;
}
.domain-tlds {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-bottom: 44px;
}
.tld {
  font-family: var(--mono);
  font-size: 0.73rem;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(108, 95, 255, 0.1);
  color: rgba(165, 148, 255, 0.8);
  border: 1px solid var(--bord2);
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
}
.tld:hover {
  background: var(--acc);
  color: #fff;
  border-color: var(--acc);
}
.tld.sale::after {
  content: "-50%";
  position: absolute;
  top: -8px;
  right: -4px;
  background: #f43f5e;
  color: #fff;
  font-size: 7px;
  padding: 1px 4px;
  border-radius: 4px;
  font-weight: 700;
}
.sdot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  margin-right: 6px;
  box-shadow: 0 0 6px #10b981;
  animation: sdp 2s ease-in-out infinite;
}
@keyframes sdp {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.tkw {
  border-top: 1px solid var(--bord);
  border-bottom: 1px solid var(--bord);
  background: var(--bg2);
  padding: 18px 0;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
}
.tkt {
  display: flex;
  width: max-content;
  animation: tltr 34s linear infinite;
}
.tkt:hover {
  animation-play-state: paused;
}
@keyframes tltr {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ti {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 40px;
  font-size: 0.8rem;
  color: var(--dim);
  white-space: nowrap;
}
.tdot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.s-diag {
  background: var(--bg2);
  border-top: 1px solid var(--bord);
  padding: 120px 52px;
  position: relative;
  overflow: hidden;
}
.s-diag::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(108, 95, 255, 0.14),
    transparent 65%
  );
  pointer-events: none;
}
.diag-in {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: center;
}
.dl {
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 18px;
}
.dh {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 18px;
}
.dh em {
  font-style: italic;
  background: linear-gradient(100deg, #a78bfa, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dp {
  font-size: 0.95rem;
  color: var(--sub);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
}
.dlk {
  font-size: 0.88rem;
  font-weight: 500;
  color: #a78bfa;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.dlk:hover {
  gap: 10px;
}
.diag-wrap {
  height: 360px;
}
#dsvg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
@keyframes dash {
  to {
    stroke-dashoffset: -20;
  }
}
@keyframes travel {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}
.s-web {
  background: var(--bg);
  border-top: 1px solid var(--bord);
}
.s-web-in {
  max-width: 1120px;
  margin: 0 auto;
  padding: 100px 52px;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
}
.sl {
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 18px;
}
.sh {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 18px;
}
.sh em {
  font-style: italic;
  background: linear-gradient(100deg, #6c5fff, #00c2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sp {
  font-size: 0.95rem;
  color: var(--sub);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
}
.slk {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--acc);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.slk:hover {
  gap: 10px;
}
.browser {
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  box-shadow:
    0 -4px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  background: #1a1840;
}
.bbar {
  background: #111028;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.bdots {
  display: flex;
  gap: 5px;
}
.bdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.burl {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  padding: 4px 10px;
  font-family: var(--mono);
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.3);
}
.bscroll {
  padding: 22px;
  background: #131130;
  min-height: 280px;
}
.bpnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.bpn-lg {
  width: 52px;
  height: 7px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
}
.bpn-ls {
  display: flex;
  gap: 8px;
}
.bpn-l {
  width: 32px;
  height: 6px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 3px;
}
.bphero {
  background: linear-gradient(
    135deg,
    rgba(108, 95, 255, 0.2),
    rgba(0, 194, 255, 0.12)
  );
  border-radius: 12px;
  padding: 26px;
  margin-bottom: 16px;
  border: 1px solid rgba(108, 95, 255, 0.2);
}
.bph-tag {
  width: 80px;
  height: 7px;
  background: rgba(108, 95, 255, 0.4);
  border-radius: 3px;
  margin-bottom: 14px;
}
.bph-h1 {
  width: 65%;
  height: 15px;
  background: rgba(108, 95, 255, 0.3);
  border-radius: 4px;
  margin-bottom: 9px;
}
.bph-h2 {
  width: 45%;
  height: 10px;
  background: rgba(108, 95, 255, 0.18);
  border-radius: 3px;
  margin-bottom: 18px;
}
.bph-btns {
  display: flex;
  gap: 8px;
}
.bph-btn {
  height: 28px;
  border-radius: 14px;
}
.bph-btn.p {
  width: 100px;
  background: #6c5fff;
}
.bph-btn.s {
  width: 80px;
  background: transparent;
  border: 1px solid rgba(108, 95, 255, 0.4);
}
.bpcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.bpc {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.bpc-top {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(108, 95, 255, 0.2);
  margin-bottom: 8px;
}
.bpc-l {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  margin-bottom: 4px;
}
.bpc-l.s {
  width: 60%;
}
.bpc-l.a {
  background: rgba(108, 95, 255, 0.25);
}
.s-mob {
  background: var(--bg2);
  border-top: 1px solid var(--bord);
  padding: 100px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.s-mob::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(108, 95, 255, 0.1),
    transparent 70%
  );
  pointer-events: none;
}
.phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 52px;
}
.pho {
  border-radius: 40px;
  background: #0a0820;
  padding: 8px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.pho:hover {
  transform: translateY(-8px) rotate(-1deg);
}
.pho.side {
  transform: scale(0.88) rotate(4deg) translateX(-28px);
  opacity: 0.6;
}
.pho.side:hover {
  transform: scale(0.88) rotate(4deg) translateX(-28px) translateY(-4px);
}
.pscr {
  border-radius: 32px;
  background: #fff;
  overflow: hidden;
  width: 220px;
}
.ptop {
  background: linear-gradient(160deg, #1a1040 0%, #2d1880 100%);
  padding: 18px 16px 24px;
}
.pnotch {
  width: 56px;
  height: 20px;
  background: #0a0820;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 14px;
}
.pgreet {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 3px;
}
.pname {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}
.pcard {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px;
}
.pcard-l {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}
.pamount {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.pbar {
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 4px;
}
.pbar-f {
  height: 100%;
  background: linear-gradient(90deg, #a78bfa, #67e8f9);
  border-radius: 2px;
  width: 72%;
}
.pbar-l {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: space-between;
}
.pbody {
  padding: 12px;
}
.prow {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f4;
}
.prow:last-child {
  border: none;
}
.pico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 11px;
  flex-shrink: 0;
}
.prn {
  font-size: 9px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 1px;
}
.prs {
  font-size: 8px;
  color: #aaa;
}
.prv {
  margin-left: auto;
  font-size: 9px;
  font-weight: 600;
  color: #1a1a1a;
}
.s-split {
  border-top: 1px solid var(--bord);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.spcol {
  padding: 72px 60px;
  overflow: hidden;
}
.spcol:first-child {
  background: rgba(108, 95, 255, 0.06);
  border-right: 1px solid var(--bord);
}
.spcol:last-child {
  background: rgba(0, 194, 255, 0.04);
}
.smcard {
  background: var(--card);
  border: 1px solid var(--bord);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.smcard:hover {
  transform: translateY(-4px);
}
.dmtb {
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 12px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--bord);
}
.dmtool {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  font-size: 9px;
  cursor: pointer;
  color: var(--dim);
  transition: background 0.15s;
}
.dmtool.act {
  background: var(--acc);
  color: #fff;
}
.dmcv {
  padding: 14px;
  background: rgba(108, 95, 255, 0.08);
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.dmgh {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(165, 148, 255, 0.2);
  top: 50%;
}
.dmgv {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(165, 148, 255, 0.2);
  left: 50%;
}
.dmframe {
  width: 190px;
  background: var(--bg3);
  border-radius: 10px;
  padding: 14px;
  border: 1px solid var(--bord);
}
.dmft {
  height: 8px;
  background: var(--acc);
  border-radius: 4px;
  margin-bottom: 8px;
  width: 70%;
}
.dmfl {
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-bottom: 4px;
}
.dmfl.w60 {
  width: 60%;
}
.dmfl.w80 {
  width: 80%;
}
.dmfb {
  margin-top: 8px;
  height: 20px;
  width: 66px;
  background: var(--acc);
  border-radius: 10px;
}
.dmlayers {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dml {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 9px;
  color: var(--sub);
  transition: background 0.15s;
}
.dml:hover {
  background: rgba(255, 255, 255, 0.04);
}
.dml.sel {
  background: rgba(108, 95, 255, 0.15);
  color: #a78bfa;
}
.dml-ic {
  font-size: 9px;
  width: 16px;
  text-align: center;
  opacity: 0.5;
}
.secmock {
  padding: 18px;
}
.sechd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.sect {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
}
.secs {
  font-size: 9px;
  color: var(--dim);
  margin-top: 1px;
}
.secbadge {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  font-size: 9px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.secgrade {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 10px;
  border: 1px solid rgba(16, 185, 129, 0.15);
  margin-bottom: 12px;
}
.secgn {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #10b981;
  line-height: 1;
}
.secgl {
  font-size: 10px;
  font-weight: 600;
  color: #10b981;
}
.secsub {
  font-size: 8px;
  color: rgba(16, 185, 129, 0.6);
  margin-top: 2px;
}
.secitems {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.secitem {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 7px;
  border: 1px solid var(--bord);
}
.sidot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.siname {
  font-size: 9px;
  color: var(--sub);
  flex: 1;
}
.sist {
  font-size: 8px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 4px;
}
.s-smm {
  background: var(--bg3);
  border-top: 1px solid var(--bord);
  padding: 100px 52px;
  position: relative;
  overflow: hidden;
}
.s-smm::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.08),
    transparent 60%
  );
  pointer-events: none;
}
.smmin {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.smmcard {
  background: var(--card2);
  border: 1px solid var(--bord);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.smmcard:hover {
  transform: translateY(-4px);
}
.smmhdr {
  padding: 20px 24px;
  border-bottom: 1px solid var(--bord);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.smmav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  flex-shrink: 0;
}
.smmpn {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
}
.smmph {
  font-size: 9px;
  color: var(--dim);
}
.smmprd {
  font-family: var(--mono);
  font-size: 8px;
  color: var(--dim);
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 8px;
  border-radius: 4px;
}
.smmstats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--bord);
}
.smmst {
  padding: 18px 22px;
  border-right: 1px solid var(--bord);
}
.smmst:last-child {
  border-right: none;
}
.smmsn {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.smmsl {
  font-size: 8px;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.smmsd {
  font-size: 8px;
  color: #10b981;
  font-weight: 500;
  margin-top: 2px;
}
.smmchart {
  padding: 20px 24px 0;
  height: 90px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.smmbar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(245, 158, 11, 0.18);
  transition: background 0.2s;
  cursor: pointer;
}
.smmbar:hover {
  background: rgba(245, 158, 11, 0.5);
}
.smmbar.hi {
  background: rgba(245, 158, 11, 0.6);
}
.smmposts {
  padding: 14px 22px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.smmpt {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 20px;
}
.smmpc {
  font-size: 9px;
  color: var(--sub);
  line-height: 1.5;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.smmpa {
  display: flex;
  gap: 10px;
}
.smmpaa {
  font-size: 8px;
  color: var(--dim);
  display: flex;
  align-items: center;
  gap: 3px;
}
.s-brand {
  background: var(--bg2);
  border-top: 1px solid var(--bord);
  padding: 100px 52px;
}
.s-brand-top {
  max-width: 1120px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.s-brand-sys {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 190px 1fr 1fr;
  gap: 16px;
}
.bicard {
  background: var(--card);
  border: 1px solid var(--bord);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}
.bicard:hover {
  transform: translateY(-3px);
}
.bimark {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #6c5fff, #00c2ff);
  display: grid;
  place-items: center;
  font-size: 28px;
}
.biname {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.bitag {
  font-size: 7px;
  color: var(--dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bccard {
  background: var(--card);
  border: 1px solid var(--bord);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}
.bccard:hover {
  transform: translateY(-3px);
}
.bcswatches {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 90px;
}
.bcbtm {
  padding: 14px;
}
.bcttl {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  color: var(--dim);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bcrows {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bcrow {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bcdot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}
.bcnm {
  font-size: 8px;
  color: var(--sub);
}
.bchex {
  font-family: var(--mono);
  font-size: 8px;
  color: var(--dim);
  margin-left: auto;
}
.btcard {
  background: var(--card);
  border: 1px solid var(--bord);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}
.btcard:hover {
  transform: translateY(-3px);
}
.btttl {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.btxl {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 3px;
  line-height: 1;
}
.btxl em {
  font-style: italic;
}
.btmd {
  font-size: 0.9rem;
  color: var(--sub);
  margin-bottom: 3px;
}
.btsm {
  font-size: 0.8rem;
  color: var(--dim);
  font-weight: 300;
  margin-bottom: 8px;
}
.btmono {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: rgba(165, 148, 255, 0.4);
}
.s-mesh {
  background: #080618;
  border-top: 1px solid var(--bord);
  position: relative;
  overflow: hidden;
}
.mesh-txt {
  max-width: 1120px;
  margin: 0 auto;
  padding: 100px 52px 0;
}
.mesh-lbl {
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 18px;
}
.mesh-h {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 14px;
}
.mesh-h em {
  font-style: italic;
  background: linear-gradient(100deg, #a78bfa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mesh-p {
  font-size: 0.95rem;
  color: var(--sub);
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
}
#mcanvas {
  display: block;
  width: 100%;
  height: 320px;
}
.mesh-sts {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 52px 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.ms {
  padding: 40px 0 0;
  border-top: 1px solid var(--bord);
}
.msn {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 10px;
}
.msn em {
  font-style: italic;
  font-size: 0.55em;
  background: linear-gradient(90deg, #a78bfa, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  vertical-align: middle;
}
.msl {
  font-size: 0.88rem;
  color: var(--sub);
  font-weight: 300;
}
.s-stats {
  background: #060415;
  padding: 100px 52px;
}
.sts-in {
  max-width: 1120px;
  margin: 0 auto;
}
.sts-lbl {
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 60px;
}
.sts-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stc {
  padding: 0 40px;
  border-right: 1px solid var(--bord);
}
.stc:first-child {
  padding-left: 0;
}
.stc:last-child {
  border-right: none;
}
.stn {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 12px;
}
.stn em {
  font-style: italic;
  font-size: 0.55em;
  background: linear-gradient(90deg, #a78bfa, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  vertical-align: middle;
}
.stl {
  font-size: 0.88rem;
  color: var(--sub);
  font-weight: 300;
  line-height: 1.5;
}
.tt2 {
  border-top: 1px solid var(--bord);
  padding: 20px 0;
  overflow: hidden;
  background: var(--bg);
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
}
.tt2t {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: trtl 28s linear infinite;
}
.tt2t:hover {
  animation-play-state: paused;
}
@keyframes trtl {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.chip {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bord2);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--sub);
  white-space: nowrap;
  cursor: default;
  transition: all 0.15s;
}
.chip:hover {
  border-color: rgba(108, 95, 255, 0.4);
  background: rgba(108, 95, 255, 0.08);
  color: var(--acc);
}
.s-plans {
  background: var(--bg2);
  border-top: 1px solid var(--bord);
  padding: 100px 52px;
}
.s-plans-in {
  max-width: 1120px;
  margin: 0 auto;
}
.s-plans-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}
.see-all {
  font-size: 0.82rem;
  color: var(--sub);
  text-decoration: none;
  border-bottom: 1px solid var(--bord2);
  padding-bottom: 2px;
  transition:
    color 0.15s,
    border-color 0.15s;
  white-space: nowrap;
}
.see-all:hover {
  color: var(--acc);
  border-color: var(--acc);
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.plan-card {
  background: var(--card);
  border: 1px solid var(--bord);
  border-radius: 20px;
  padding: 36px;
  transition:
    border-color 0.2s,
    transform 0.2s;
  position: relative;
}
.plan-card:hover {
  border-color: var(--acc);
  transform: translateY(-4px);
}
.plan-card.pop {
  border-color: var(--acc);
}
.pop-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--acc);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.6rem;
  padding: 3px 9px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.plan-name {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 14px;
}
.plan-price {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-usd {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--dim);
  margin-bottom: 28px;
}
.plan-specs {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}
.spec-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--sub);
}
.spec-lbl {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--dim);
  width: 52px;
  flex-shrink: 0;
}
.spec-val {
  color: var(--text);
  font-weight: 500;
}
.plan-feats {
  border-top: 1px solid var(--bord);
  padding-top: 18px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.feat {
  font-size: 0.8rem;
  color: var(--sub);
  display: flex;
  align-items: center;
  gap: 8px;
}
.feat::before {
  content: "✓";
  color: #10b981;
  font-weight: 700;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.plan-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid var(--bord2);
  background: transparent;
  color: var(--text);
}
.plan-btn:hover {
  background: var(--acc);
  border-color: var(--acc);
  color: #fff;
}
.plan-btn.prim {
  background: var(--acc);
  border-color: var(--acc);
  color: #fff;
}
.plan-btn.prim:hover {
  opacity: 0.85;
}
.s-contact {
  border-top: 1px solid var(--bord);
  padding: 100px 52px;
}
.s-contact-in {
  max-width: 1120px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 52px;
}
.chan-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chan {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--card);
  border: 1px solid var(--bord);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.chan:hover {
  border-color: var(--acc);
  transform: translateX(4px);
}
.chan-ico {
  font-size: 20px;
  flex-shrink: 0;
}
.chan-name {
  font-weight: 600;
  font-size: 0.88rem;
}
.chan-hint {
  font-size: 0.74rem;
  color: var(--dim);
  margin-top: 2px;
}
.chan-arr {
  margin-left: auto;
  color: var(--dim);
  transition: color 0.2s;
}
.chan:hover .chan-arr {
  color: var(--acc);
}
.cform {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cform input,
.cform select {
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--bord2);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.86rem;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
.cform input::placeholder {
  color: var(--dim);
}
.cform input:focus,
.cform select:focus {
  border-color: var(--acc);
}
.cform select option {
  background: var(--bg);
  color: var(--text);
}
.cform-btn {
  padding: 13px;
  background: var(--acc);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
}
.cform-btn:hover {
  opacity: 0.85;
}
.cform-note {
  font-size: 0.7rem;
  color: var(--dim);
  text-align: center;
}
.s-faq {
  background: var(--bg2);
  border-top: 1px solid var(--bord);
  padding: 100px 52px;
}
.s-faq-in {
  max-width: 1120px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
}
.faq-item {
  border-bottom: 1px solid var(--bord);
}
.faq-item:first-child {
  border-top: 1px solid var(--bord);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text);
  gap: 16px;
  user-select: none;
}
.faq-ico {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--bord2);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--dim);
  transition: all 0.2s;
}
.faq-item.open .faq-ico {
  background: var(--acc);
  border-color: var(--acc);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    padding-bottom 0.35s;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}
.faq-a p {
  font-size: 0.86rem;
  color: var(--sub);
  line-height: 1.75;
  font-weight: 300;
}
.cta {
  border-top: 1px solid var(--bord);
  padding: 160px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(108, 95, 255, 0.1),
    transparent 70%
  );
  pointer-events: none;
}
.cta h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 18px;
}
.cta h2 em {
  font-style: italic;
  background: linear-gradient(100deg, #6c5fff, #00c2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta p {
  font-size: 1rem;
  color: var(--sub);
  max-width: 420px;
  margin: 0 auto 44px;
  font-weight: 300;
  line-height: 1.75;
}
.cta-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
footer {
  border-top: 1px solid var(--bord);
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 52px 44px;
}
.fg {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 52px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--bord);
}
.fb .logo {
  margin-bottom: 14px;
  display: inline-flex;
}
.fb p {
  font-size: 0.82rem;
  color: var(--sub);
  line-height: 1.7;
  max-width: 240px;
  font-weight: 300;
}
.fch {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 14px;
}
.fc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fc ul a {
  font-size: 0.85rem;
  color: var(--sub);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.15s;
}
.fc ul a:hover {
  color: var(--text);
}
.fbtm {
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  color: var(--dim);
}
.fmono {
  font-family: var(--mono);
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.1);
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (max-width: 960px) {
  nav {
    padding: 0 20px;
  }
  .nl {
    display: none;
  }
  .ncta {
    display: none;
  }
  .ngl {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav-controls {
    gap: 5px;
  }
  .lang-sw {
    gap: 1px;
  }
  .lang-btn {
    padding: 4px 7px;
    font-size: 0.6rem;
  }
  .hero {
    padding: 90px 20px 0;
  }
  .hk {
    font-size: 0.6rem;
  }
  .domain-box {
    border-radius: 12px;
    flex-direction: column;
  }
  .domain-in {
    border-radius: 12px 12px 0 0;
    padding: 12px 18px;
  }
  .domain-btn {
    border-radius: 0 0 12px 12px;
    padding: 12px;
  }
  .hba {
    margin-bottom: 60px;
  }
  .ti {
    padding: 0 24px;
  }
  .s-diag {
    padding: 60px 20px;
  }
  .diag-in {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .diag-wrap {
    height: 260px;
  }
  .s-web-in {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 40px;
  }
  .s-mob {
    padding: 60px 20px;
  }
  .pho.side {
    display: none;
  }
  .phones {
    margin-top: 36px;
  }
  .s-split {
    grid-template-columns: 1fr;
  }
  .spcol {
    padding: 52px 20px;
  }
  .spcol:first-child {
    border-right: none;
    border-bottom: 1px solid var(--bord);
  }
  .s-smm {
    padding: 60px 20px;
  }
  .smmin {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .smmstats {
    grid-template-columns: 1fr 1fr;
  }
  .smmst:nth-child(2) {
    border-right: none;
  }
  .s-brand {
    padding: 60px 20px;
  }
  .s-brand-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .s-brand-sys {
    grid-template-columns: 1fr 1fr;
  }
  .mesh-txt {
    padding: 60px 20px 0;
  }
  .mesh-sts {
    padding: 0 20px 60px;
    grid-template-columns: 1fr 1fr;
  }
  .s-stats {
    padding: 60px 20px;
  }
  .sts-row {
    grid-template-columns: 1fr 1fr;
  }
  .stc {
    padding: 0 0 28px;
    border-right: none;
    border-bottom: 1px solid var(--bord);
  }
  .stc:last-child {
    border-bottom: none;
  }
  .s-plans {
    padding: 60px 20px;
  }
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .s-plans-hd {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .s-contact {
    padding: 60px 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .s-faq {
    padding: 60px 20px;
  }
  .cta {
    padding: 80px 20px;
  }
  .fg {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  footer {
    padding: 48px 20px 32px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 2.8rem;
    letter-spacing: -0.02em;
  }
  .hs {
    font-size: 0.95rem;
  }
  .hba {
    flex-direction: column;
    align-items: center;
  }
  .bf,
  .bo {
    width: 100%;
    justify-content: center;
  }
  .s-diag,
  .s-web-in,
  .s-mob,
  .s-smm,
  .s-brand,
  .s-contact,
  .s-faq {
    padding: 48px 16px;
  }
  .spcol {
    padding: 40px 16px;
  }
  .s-brand-sys {
    grid-template-columns: 1fr;
  }
  .mesh-txt {
    padding: 48px 16px 0;
  }
  .mesh-sts {
    grid-template-columns: 1fr;
    padding: 0 16px 48px;
  }
  .s-stats {
    padding: 48px 16px;
  }
  .sts-row {
    grid-template-columns: 1fr 1fr;
  }
  .s-plans {
    padding: 48px 16px;
  }
  .cta {
    padding: 64px 16px;
  }
  .cta h2 {
    font-size: 2.4rem;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .cta-btns .bf,
  .cta-btns .bo {
    width: 100%;
    justify-content: center;
  }
  .smmstats {
    grid-template-columns: 1fr 1fr;
  }
  .smmsn {
    font-size: 1.3rem;
  }
  .bpcards {
    grid-template-columns: 1fr 1fr;
  }
  .fg {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 40px 16px 28px;
  }
  .fbtm {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .lang-btn {
    padding: 3px 6px;
    font-size: 0.58rem;
  }
  .theme-btn {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 400px) {
  .lang-sw {
    display: none;
  }
}
