@charset "UTF-8";
/* 全站公共样式 */

:root {
  --ink: #101114;
  --ink-soft: #2f3238;
  --muted: #747984;
  --line: #e8e9ec;
  --line-strong: #d9dbe1;
  --surface: #f7f8fa;
  --surface-blue: #f3f5ff;
  --white: #ffffff;
  --accent: #5964f2;
  --accent-dark: #444ed5;
  --success: #30aa70;
  --container: 1180px;
  --shadow-sm: 0 12px 34px rgba(20, 23, 31, 0.07);
  --shadow-lg: 0 30px 80px rgba(28, 31, 41, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

svg {
  display: block;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    height 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  height: 68px;
  border-color: rgba(226, 228, 233, 0.85);
  box-shadow: 0 5px 22px rgba(24, 26, 33, 0.035);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  letter-spacing: 0;
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  color: #5148d9;
  background: linear-gradient(120deg, #5548d9 0%, #725ee8 46%, #347fd9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.055em;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
}

.brand-wordmark em {
  margin-left: 7px;
  padding: 6px 9px 5px;
  color: #fff;
  background: linear-gradient(135deg, #725ee8, #347fd9);
  border-radius: 7px;
  box-shadow: 0 6px 15px rgba(92, 82, 220, 0.28);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.01em;
  transform: translateY(1px);
  -webkit-text-fill-color: #fff;
  transition:
    filter 0.2s ease,
    box-shadow 0.2s ease;
}

.brand:hover .brand-wordmark {
  filter: saturate(1.18);
  transform: translateY(-1px);
}

.brand:hover .brand-wordmark em {
  filter: brightness(0.94);
  box-shadow: 0 8px 18px rgba(74, 67, 190, 0.34);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.desktop-nav a,
.login-link {
  color: #4c5058;
  font-size: 14px;
  font-weight: 550;
  transition: color 0.2s ease;
}

.desktop-nav a {
  position: relative;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

.desktop-nav a:hover,
.login-link:hover {
  color: var(--ink);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.desktop-nav a[aria-current="page"] {
  color: var(--ink);
}

.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.button svg,
.inline-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(16, 17, 20, 0.16);
}

.button-dark:hover {
  background: #25272c;
  box-shadow: 0 14px 30px rgba(16, 17, 20, 0.2);
}

.button-small {
  min-height: 40px;
  padding: 0 17px;
  border-radius: 9px;
  font-size: 13px;
}

.button-ghost {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line-strong);
}

.button-ghost:hover {
  border-color: #bfc2c9;
  box-shadow: var(--shadow-sm);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.menu-toggle.is-active span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-toggle.is-active span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.mobile-menu {
  padding: 4px 24px 20px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu a {
  padding: 14px 0;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 600;
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 88px 0 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(237, 239, 244, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 239, 244, 0.55) 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, #fbfbfd 100%);
  background-size: 44px 44px, 44px 44px, 100% 100%;
  background-position: center -1px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.32) 40%,
    rgba(255, 255, 255, 0.12) 70%,
    rgba(255, 255, 255, 0.85) 100%
  );
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  pointer-events: none;
}

.hero-orb-one {
  top: 100px;
  right: 12%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(109, 119, 249, 0.14), transparent 70%);
}

.hero-orb-two {
  left: -200px;
  bottom: -180px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(160, 207, 255, 0.12), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 72px;
}

.hero-copy {
  padding-bottom: 18px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: #595e68;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 99px;
  box-shadow: 0 8px 28px rgba(30, 34, 44, 0.05);
}

.live-dot {
  position: relative;
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
}

.live-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(48, 170, 112, 0.4);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.75);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero h1 {
  margin: 0;
  font-size: clamp(54px, 5.6vw, 80px);
  font-weight: 720;
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.hero h1 span {
  color: var(--accent);
}

.hero-lead {
  max-width: 520px;
  margin: 30px 0 0;
  color: #5f646e;
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 24px;
  color: #6d727c;
  font-size: 12px;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-notes svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--success);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.app-showcase-card {
  position: absolute;
  top: 10px;
  left: 18px;
  width: min(100%, 540px);
  padding: 26px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(224, 226, 232, 0.95);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.app-showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.app-showcase-head p {
  margin: 0 0 3px;
  color: #8a8e97;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.app-showcase-head strong {
  display: block;
  color: #24262c;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.uptime-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.signal-full {
  height: 17px;
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
}

.signal-full i {
  width: 3px;
  background: var(--success);
  border-radius: 2px;
}

.signal-full i:nth-child(1) {
  height: 5px;
}

.signal-full i:nth-child(2) {
  height: 8px;
}

.signal-full i:nth-child(3) {
  height: 12px;
}

.signal-full i:nth-child(4) {
  height: 16px;
}

.app-online {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: #3f805d;
  background: #eef8f2;
  border: 1px solid #ddf0e5;
  border-radius: 99px;
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}

.app-online i,
.app-showcase-foot i {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(48, 170, 112, 0.11);
}

.app-cloud-stage {
  position: relative;
  height: 300px;
  margin-top: 21px;
  background:
    radial-gradient(circle at 25% 20%, rgba(112, 122, 255, 0.1), transparent 29%),
    radial-gradient(circle at 76% 78%, rgba(103, 190, 255, 0.1), transparent 31%),
    linear-gradient(145deg, #fafbfc, #f5f7fa);
  border: 1px solid #eceef2;
  border-radius: 18px;
  overflow: hidden;
}

.app-cloud-stage::before,
.app-cloud-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px dashed rgba(131, 137, 154, 0.17);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.app-cloud-stage::before {
  width: 300px;
  height: 205px;
}

.app-cloud-stage::after {
  width: 205px;
  height: 138px;
}

.cloud-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.cloud-glow-one {
  top: -75px;
  right: -55px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(108, 118, 248, 0.13), transparent 68%);
}

.cloud-glow-two {
  left: -65px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(115, 195, 244, 0.12), transparent 68%);
}

.cloud-app {
  --cloud-scale: 1;
  --cloud-rise: -8px;
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 228, 234, 0.96);
  border-radius: 18px;
  box-shadow:
    0 13px 30px rgba(30, 34, 46, 0.1),
    inset 0 0 0 5px rgba(248, 249, 251, 0.9);
  animation: cloud-float var(--cloud-speed, 5s) ease-in-out infinite;
  animation-delay: var(--cloud-delay, 0s);
}

.cloud-app img {
  width: 68%;
  height: 68%;
  display: block;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.25s ease;
}

.cloud-app:hover {
  z-index: 5;
  border-color: #cfd3fb;
}

.cloud-app:hover img {
  transform: scale(1.1);
}

.cloud-app-1 {
  top: 22px;
  left: 27px;
  width: 64px;
  height: 64px;
  --cloud-speed: 5.2s;
  --cloud-delay: -1.2s;
  --cloud-rise: -10px;
}

.cloud-app-2 {
  top: 39px;
  left: 139px;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  --cloud-speed: 4.7s;
  --cloud-delay: -3.1s;
  --cloud-rise: -7px;
}

.cloud-app-3 {
  top: 17px;
  right: 32px;
  width: 68px;
  height: 68px;
  --cloud-speed: 5.8s;
  --cloud-delay: -2.1s;
  --cloud-rise: -11px;
}

.cloud-app-4 {
  top: 105px;
  left: 12px;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  --cloud-speed: 4.9s;
  --cloud-delay: -0.9s;
  --cloud-rise: -8px;
}

.cloud-app-5 {
  top: 104px;
  right: 14px;
  width: 58px;
  height: 58px;
  --cloud-speed: 5.4s;
  --cloud-delay: -3.8s;
  --cloud-rise: -9px;
}

.cloud-app-6 {
  left: 31px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  --cloud-speed: 5.6s;
  --cloud-delay: -2.8s;
  --cloud-rise: -10px;
}

.cloud-app-7 {
  left: 119px;
  bottom: 77px;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  --cloud-speed: 4.6s;
  --cloud-delay: -1.7s;
  --cloud-rise: -7px;
}

.cloud-app-8 {
  left: 50%;
  bottom: 17px;
  width: 58px;
  height: 58px;
  --cloud-speed: 5.1s;
  --cloud-delay: -4.2s;
  --cloud-rise: -9px;
  margin-left: -29px;
}

.cloud-app-9 {
  right: 117px;
  bottom: 78px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  --cloud-speed: 4.8s;
  --cloud-delay: -2.4s;
  --cloud-rise: -7px;
}

.cloud-app-10 {
  right: 28px;
  bottom: 27px;
  width: 60px;
  height: 60px;
  --cloud-speed: 5.7s;
  --cloud-delay: -1.1s;
  --cloud-rise: -10px;
}

.cloud-message {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 236px;
  min-height: 72px;
  padding: 11px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dfe2e9;
  border-radius: 15px;
  box-shadow: 0 17px 40px rgba(29, 33, 45, 0.13);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translate(-50%, -50%);
}

.cloud-message::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 1px solid rgba(89, 100, 242, 0.14);
  border-radius: 20px;
  animation: cloud-message-pulse 2.8s ease-in-out infinite;
}

.cloud-message-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--ink);
  border-radius: 11px;
}

.cloud-message-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cloud-message > span:last-child {
  min-width: 0;
  display: grid;
}

.cloud-message small {
  color: var(--accent);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.cloud-message strong {
  color: #2b2e35;
  font-size: 12px;
  white-space: nowrap;
}

.cloud-dot {
  position: absolute;
  z-index: 1;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(89, 100, 242, 0.16);
  box-sizing: content-box;
  animation: cloud-dot-pulse 2.3s ease-in-out infinite;
}

.cloud-dot-one {
  top: 30px;
  left: 232px;
}

.cloud-dot-two {
  right: 91px;
  bottom: 127px;
  animation-delay: -0.8s;
}

.cloud-dot-three {
  left: 87px;
  bottom: 114px;
  animation-delay: -1.5s;
}

@keyframes cloud-float {
  0%,
  100% {
    transform: translateY(0) scale(var(--cloud-scale));
  }
  50% {
    transform: translateY(var(--cloud-rise)) scale(var(--cloud-scale));
  }
}

@keyframes cloud-message-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.97);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cloud-dot-pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.75);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.app-logo-flow {
  position: relative;
  margin-top: 21px;
  padding: 19px 0;
  background:
    linear-gradient(rgba(230, 232, 238, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 232, 238, 0.55) 1px, transparent 1px),
    linear-gradient(145deg, #f8f9fb, #f3f5fa);
  background-size: 30px 30px, 30px 30px, 100% 100%;
  border: 1px solid #eceef2;
  border-radius: 16px;
  overflow: hidden;
}

.app-logo-flow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(89, 100, 242, 0.13), transparent 68%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.logo-rail {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.logo-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 14px;
  will-change: transform;
}

.logo-track-forward {
  animation: logo-scroll-forward 24s linear infinite;
}

.logo-track-reverse {
  animation: logo-scroll-reverse 26s linear infinite;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.app-logo-chip {
  position: relative;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e7e9ee;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(24, 27, 36, 0.07);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.app-logo-chip::after {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: 0;
  border: 1px solid rgba(239, 240, 244, 0.7);
  border-radius: 13px;
  pointer-events: none;
}

.app-logo-chip img {
  position: relative;
  z-index: 1;
  width: 47px;
  height: 47px;
  display: block;
  object-fit: contain;
  border-radius: 11px;
}

.app-logo-flow:hover .logo-track {
  animation-play-state: paused;
}

.app-logo-flow:hover .app-logo-chip:hover {
  z-index: 2;
  border-color: #cfd3fb;
  box-shadow: 0 12px 28px rgba(53, 60, 142, 0.13);
  transform: translateY(-3px);
}

.app-connection-hub {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 54px), 348px);
  min-height: 70px;
  margin: 14px auto;
  padding: 11px 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #dfe2e9;
  border-radius: 14px;
  box-shadow: 0 14px 35px rgba(29, 33, 45, 0.11);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hub-icon {
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--ink);
  border-radius: 11px;
  box-shadow: 0 8px 18px rgba(16, 17, 20, 0.2);
}

.hub-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hub-copy {
  min-width: 0;
  display: grid;
}

.hub-copy small {
  color: #989ca5;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.hub-copy strong {
  color: #2b2e35;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  white-space: nowrap;
}

.hub-signal {
  height: 26px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
}

.hub-signal i {
  width: 3px;
  background: var(--accent);
  border-radius: 99px;
  animation: signal-wave 1.25s ease-in-out infinite;
}

.hub-signal i:nth-child(1) {
  height: 9px;
}

.hub-signal i:nth-child(2) {
  height: 16px;
  animation-delay: 0.15s;
}

.hub-signal i:nth-child(3) {
  height: 23px;
  animation-delay: 0.3s;
}

.app-showcase-foot {
  min-height: 42px;
  margin-top: 16px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #747984;
  background: #f8f9fa;
  border: 1px solid #eceef1;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 650;
}

.app-showcase-foot span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

@keyframes logo-scroll-forward {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@keyframes logo-scroll-reverse {
  from {
    transform: translateX(calc(-50% - 7px));
  }
  to {
    transform: translateX(0);
  }
}

@keyframes signal-wave {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleY(0.55);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.dashboard-card {
  position: absolute;
  top: 10px;
  left: 18px;
  width: min(100%, 540px);
  padding: 26px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(224, 226, 232, 0.95);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.dashboard-head,
.endpoint-label,
.traffic-head,
.region-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-head > div > p,
.traffic-head p,
.region-card-head p {
  margin: 0 0 2px;
  color: #8a8e97;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 700;
}

.status-label span {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(48, 170, 112, 0.1);
}

.icon-button,
.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.icon-button {
  width: 36px;
  height: 36px;
  color: #858a93;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.icon-button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.endpoint-box {
  margin-top: 23px;
  padding: 16px 17px;
  background: var(--surface);
  border: 1px solid #eceef2;
  border-radius: 12px;
}

.endpoint-label {
  gap: 10px;
  color: #8c9098;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.11em;
}

.region-tag {
  padding: 4px 7px;
  color: #545ee1;
  background: #ebeefe;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.endpoint-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.endpoint-value code {
  color: #282b32;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  font-weight: 600;
}

.copy-button {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  color: #616672;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.copy-button:hover {
  color: var(--accent);
  border-color: #cdd1fa;
  transform: translateY(-1px);
}

.copy-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.connection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 15px 0;
}

.connection-grid > div {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
}

.connection-grid p {
  margin: 0 0 3px;
  color: #969aa2;
  font-size: 9px;
  letter-spacing: 0.04em;
}

.connection-grid strong {
  display: block;
  color: #35383f;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.traffic-panel {
  padding: 16px 16px 5px;
  border: 1px solid var(--line);
  border-radius: 13px;
  overflow: hidden;
}

.traffic-head strong {
  display: block;
  font-size: 13px;
}

.legend {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #8b8f98;
  font-size: 8px;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.legend i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.legend-up {
  background: var(--accent);
}

.legend-down {
  background: #a7acb7;
}

.traffic-chart {
  width: 100%;
  height: 104px;
  margin-top: 5px;
  overflow: visible;
}

.chart-grid {
  fill: none;
  stroke: #eff0f3;
  stroke-width: 1;
}

.chart-area {
  fill: url(#areaFill);
}

.chart-line {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.chart-line-main {
  stroke: var(--accent);
}

.chart-line-secondary {
  stroke: #b8bcc5;
  stroke-dasharray: 4 5;
}

.floating-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(28, 31, 40, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.floating-badge-ip {
  right: -19px;
  top: 81px;
}

.floating-badge-shield {
  left: -20px;
  bottom: 54px;
}

.badge-icon {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: #eef0ff;
  border-radius: 9px;
}

.badge-icon-dark {
  color: var(--white);
  background: var(--ink);
}

.badge-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-badge > span:last-child {
  display: grid;
}

.floating-badge small {
  color: #979aa3;
  font-size: 8px;
  line-height: 1.3;
}

.floating-badge strong {
  color: #33363d;
  font-size: 10px;
}

.protocol-row {
  position: relative;
  z-index: 1;
  min-height: 110px;
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(223, 225, 230, 0.85);
}

.protocol-row p {
  margin: 0;
  color: #8b8f98;
  font-size: 12px;
}

.protocol-row p a {
  font-weight: 700;
  transition: color 0.2s ease;
}

.protocol-row p a:hover {
  color: var(--ink);
}

.protocol-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.protocol-list span {
  color: #626772;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.section {
  padding: 120px 0;
  scroll-margin-top: 78px;
}

.section-intro {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 56px;
}

.section-kicker {
  margin-bottom: 15px;
  color: var(--accent);
}

.section h2 {
  margin: 0;
  font-size: clamp(36px, 4.1vw, 55px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.section-intro > p,
.network-copy > p:not(.section-kicker),
.plans-copy > p:not(.section-kicker),
.faq-heading > p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.feature-section {
  background: var(--white);
}

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

.feature-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid #eef0f3;
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: #dfe1e6;
  box-shadow: 0 22px 50px rgba(27, 30, 39, 0.08);
}

.feature-card-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.feature-card-code {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  background: #f7f7f9;
}

.feature-icon,
.step-icon {
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: 0 7px 18px rgba(18, 20, 28, 0.05);
}

.feature-icon svg,
.step-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 26px 0 9px;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.feature-card p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.mini-session {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.mini-session > span {
  width: 11px;
  height: 11px;
  background: var(--success);
  border: 3px solid #dff4e9;
  border-radius: 50%;
  box-sizing: content-box;
}

.mini-session > div {
  height: 2px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #d9dce2;
}

.mini-session i {
  width: 4px;
  height: 4px;
  background: #a8adb7;
  border: 2px solid var(--surface);
  border-radius: 50%;
  box-sizing: content-box;
}

.mini-session small {
  color: #858a94;
  font-size: 9px;
}

.node-visual {
  position: relative;
  min-height: 260px;
  align-self: center;
}

.node-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid #dfe2ec;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.node-ring-one {
  width: 148px;
  height: 148px;
  border-style: dashed;
}

.node-ring-two {
  width: 240px;
  height: 240px;
}

.node-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  background: var(--ink);
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(15, 16, 20, 0.18);
  transform: translate(-50%, -50%);
}

.node-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #dfe1f7;
  box-sizing: content-box;
}

.node-dot-one {
  top: 31%;
  right: 20%;
}

.node-dot-two {
  bottom: 15%;
  left: 30%;
}

.node-dot-three {
  top: 11%;
  left: 28%;
}

.node-label {
  position: absolute;
  padding: 4px 8px;
  color: #646976;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 8px;
  font-weight: 750;
  box-shadow: 0 5px 15px rgba(22, 25, 34, 0.06);
}

.node-label-one {
  top: 21%;
  right: 5%;
}

.node-label-two {
  bottom: 3%;
  left: 15%;
}

.node-label-three {
  top: 1%;
  left: 14%;
}

.mini-console {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  display: grid;
  gap: 8px;
}

.mini-console div {
  height: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 9px;
  background: white;
  border: 1px solid #e8e9ed;
  border-radius: 6px;
}

.mini-console span {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
}

.mini-console i {
  display: block;
  width: 55%;
  height: 3px;
  background: #e3e5e9;
  border-radius: 99px;
}

.mini-console div:nth-child(2) i {
  width: 72%;
}

.mini-console div:nth-child(3) i {
  width: 42%;
}

.code-window {
  align-self: center;
  min-width: 0;
  color: #f4f5f8;
  background: #15161a;
  border: 1px solid #2a2c33;
  border-radius: 14px;
  box-shadow: 0 20px 44px rgba(14, 15, 19, 0.18);
  overflow: hidden;
}

.code-top {
  height: 38px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #1e2025;
  border-bottom: 1px solid #292b31;
}

.code-top > span {
  width: 7px;
  height: 7px;
  background: #454850;
  border-radius: 50%;
}

.code-top small {
  margin-left: auto;
  color: #777c87;
  font-family: monospace;
  font-size: 9px;
}

.code-window pre {
  margin: 0;
  padding: 25px 22px;
  overflow-x: auto;
}

.code-window code {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  line-height: 1.9;
}

.code-muted {
  color: #747985;
}

.code-accent {
  color: #9299ff;
}

.network-section {
  background: #111216;
}

.network-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 115px;
}

.network-copy h2 {
  color: white;
}

.network-copy > p:not(.section-kicker) {
  max-width: 430px;
  margin-top: 24px;
  color: #9498a2;
}

.check-list {
  margin: 36px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 0;
  color: #d9dbe0;
  border-bottom: 1px solid #292b31;
  font-size: 13px;
}

.check-list span {
  color: #5f6470;
  font-family: monospace;
  font-size: 10px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.network-copy .inline-link {
  color: white;
}

.inline-link svg {
  transition: transform 0.2s ease;
}

.inline-link:hover svg {
  transform: translateX(4px);
}

.region-card {
  padding: 22px;
  background: #f9f9fa;
  border: 1px solid #282a30;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.region-card-head {
  padding: 4px 3px 18px;
}

.region-card-head strong {
  font-size: 17px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 9px;
  color: #6f747e;
  background: white;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 9px;
}

.filter-pill svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.region-list {
  display: grid;
  gap: 7px;
}

.region-item {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 13px;
  padding: 13px 14px;
  color: var(--ink);
  background: white;
  border: 1px solid #e7e8eb;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.region-item:hover {
  transform: translateX(2px);
  border-color: #d4d6dc;
}

.region-item.is-active {
  background: var(--surface-blue);
  border-color: #cfd3fb;
}

.flag {
  width: 34px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #515660;
  background: #f1f2f4;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 800;
}

.region-item.is-active .flag {
  color: var(--accent);
  background: white;
}

.region-name {
  display: grid;
}

.region-name strong {
  font-size: 12px;
}

.region-name small {
  color: #999da5;
  font-size: 8px;
}

.latency {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #7b808a;
  font-size: 8px;
}

.latency i,
.region-footer i {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
}

.radio-dot {
  width: 15px;
  height: 15px;
  border: 1px solid #c9ccd2;
  border-radius: 50%;
}

.region-item.is-active .radio-dot {
  border: 4px solid var(--accent);
}

.region-footer {
  padding: 17px 3px 1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.region-footer > span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #777c86;
  font-size: 9px;
}

.region-footer button {
  padding: 8px 13px;
  color: white;
  background: var(--ink);
  border: 0;
  border-radius: 7px;
  font-size: 9px;
  font-weight: 650;
  cursor: pointer;
}

.section-intro-centered {
  display: block;
  text-align: center;
}

.section-intro-centered > p {
  max-width: 490px;
  margin: 17px auto 0;
}

.steps-section {
  padding-bottom: 110px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr;
  align-items: center;
}

.step-card {
  position: relative;
  min-height: 240px;
  padding: 29px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.step-card:hover .step-icon {
  color: white;
  background: var(--ink);
}

.step-number {
  position: absolute;
  top: 23px;
  right: 25px;
  color: #d0d3d9;
  font-family: monospace;
  font-size: 11px;
}

.step-icon {
  transition:
    color 0.25s ease,
    background-color 0.25s ease;
}

.step-card h3 {
  margin: 30px 0 8px;
  font-size: 17px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.step-line {
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    #cfd2d8 0,
    #cfd2d8 4px,
    transparent 4px,
    transparent 8px
  );
}

.plans-section {
  background: var(--surface);
}

.plans-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 110px;
}

.plans-copy > p:not(.section-kicker) {
  margin: 24px 0 32px;
}

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

.plan-item {
  min-height: 116px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.plan-item:hover {
  transform: translateX(4px);
  border-color: #cfd2d9;
  box-shadow: var(--shadow-sm);
}

.plan-item-featured {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.plan-index {
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c818b;
  background: var(--surface);
  border-radius: 9px;
  font-family: monospace;
  font-size: 11px;
  font-weight: 700;
}

.plan-item-featured .plan-index {
  color: white;
  background: #2b2d33;
}

.plan-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.plan-content > div {
  display: grid;
}

.plan-content h3 {
  margin: 0 0 3px;
  font-size: 15px;
}

.plan-content span {
  color: #8b8f98;
  font-size: 10px;
}

.plan-content > p {
  margin: 0;
  color: #777c86;
  font-size: 11px;
}

.plan-item-featured .plan-content span,
.plan-item-featured .plan-content > p {
  color: #898e99;
}

.plan-item > svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-section {
  position: relative;
  background:
    radial-gradient(circle at 8% 18%, rgba(89, 100, 242, 0.07), transparent 24%),
    radial-gradient(circle at 92% 82%, rgba(103, 190, 255, 0.08), transparent 25%),
    var(--surface);
  border-top: 1px solid #f0f1f3;
  overflow: hidden;
}

.brand-section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.72fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 45px;
}

.brand-section-head > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.brand-toolbar {
  min-height: 68px;
  margin-bottom: 22px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(24, 28, 38, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.brand-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-tab {
  min-height: 48px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #666b75;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.brand-tab span {
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8a8e97;
  background: #eef0f3;
  border-radius: 99px;
  font-family: monospace;
  font-size: 8px;
}

.brand-tab.is-active {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 8px 20px rgba(16, 17, 20, 0.16);
}

.brand-tab.is-active span {
  color: white;
  background: rgba(255, 255, 255, 0.14);
}

.brand-toolbar-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7b808a;
  font-size: 10px;
  white-space: nowrap;
}

.brand-toolbar-note i {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(48, 170, 112, 0.1);
}

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

.brand-card {
  --brand-accent: #5964f2;
  --brand-soft: #eef0ff;
  position: relative;
  min-width: 0;
  min-height: 280px;
  padding: 25px;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #e4e6eb;
  border-radius: 17px;
  text-align: left;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(22, 25, 34, 0.045);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.brand-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
  opacity: 0.65;
}

.brand-card::after {
  content: "";
  position: absolute;
  top: -85px;
  right: -70px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--brand-soft), transparent 69%);
  border-radius: 50%;
  pointer-events: none;
}

.brand-card:hover {
  border-color: color-mix(in srgb, var(--brand-accent) 28%, #dfe1e6);
  box-shadow: 0 20px 46px rgba(22, 25, 34, 0.09);
  transform: translateY(-5px);
}

.brand-card:focus-visible,
.brand-tab:focus-visible,
.brand-modal-close:focus-visible,
.brand-detail-item:focus-visible {
  outline: 3px solid rgba(89, 100, 242, 0.24);
  outline-offset: 3px;
}

.brand-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.brand-card-mark {
  width: 53px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-accent);
  background: var(--brand-soft);
  border: 1px solid color-mix(in srgb, var(--brand-accent) 18%, #e6e8ed);
  border-radius: 14px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-card-type {
  padding: 5px 8px;
  color: #7a7f89;
  background: #f5f6f8;
  border: 1px solid #e9eaee;
  border-radius: 7px;
  font-size: 8px;
  font-weight: 700;
}

.brand-card h3 {
  position: relative;
  z-index: 1;
  margin: 24px 0 7px;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.brand-card > p {
  position: relative;
  z-index: 1;
  min-height: 43px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.brand-card-meta {
  position: relative;
  z-index: 1;
  margin: 19px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.brand-card-meta span {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7e838d;
  background: #f7f8fa;
  border: 1px solid #eceef1;
  border-radius: 6px;
  font-size: 8px;
}

.brand-card-foot {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #34373e;
  border-top: 1px solid #eceef1;
  font-size: 10px;
  font-weight: 750;
}

.brand-card-foot svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--brand-accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.brand-card:hover .brand-card-foot svg {
  transform: translateX(4px);
}

.brand-noscript {
  padding: 30px;
  color: var(--muted);
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
}

.brand-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.brand-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 14, 18, 0.48);
  opacity: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity 0.22s ease;
}

.brand-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 650px);
  max-height: min(760px, calc(100vh - 48px));
  padding: 32px;
  background: white;
  border: 1px solid #e2e4e9;
  border-radius: 22px;
  box-shadow: 0 34px 100px rgba(9, 10, 13, 0.28);
  outline: none;
  opacity: 0;
  overflow-y: auto;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.brand-modal.is-open .brand-modal-backdrop,
.brand-modal.is-open .brand-modal-dialog {
  opacity: 1;
}

.brand-modal.is-open .brand-modal-dialog {
  transform: translateY(0) scale(1);
}

.brand-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #737883;
  background: #f7f8fa;
  border: 1px solid #e8eaee;
  border-radius: 10px;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.brand-modal-close:hover {
  color: var(--ink);
  background: #eff0f3;
}

.brand-modal-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.brand-modal-head {
  padding-right: 52px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 17px;
}

.brand-modal-mark {
  --modal-accent: #5964f2;
  --modal-soft: #eef0ff;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--modal-accent);
  background: var(--modal-soft);
  border: 1px solid color-mix(in srgb, var(--modal-accent) 18%, #e6e8ed);
  border-radius: 17px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 15px;
  font-weight: 800;
}

.brand-modal-type {
  color: var(--accent);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.brand-modal-head h2 {
  margin: 3px 0 2px;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.brand-modal-head p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.brand-detail-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.brand-detail-item {
  min-width: 0;
  min-height: 92px;
  padding: 15px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  background: #f8f9fa;
  border: 1px solid #e9eaee;
  border-radius: 13px;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

a.brand-detail-item:hover {
  background: white;
  border-color: #cfd3fb;
  box-shadow: 0 10px 24px rgba(30, 34, 45, 0.07);
  transform: translateY(-2px);
}

.brand-detail-icon {
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f59dc;
  background: #eceefe;
  border-radius: 10px;
}

.brand-detail-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-detail-item > span:nth-child(2) {
  min-width: 0;
  display: grid;
}

.brand-detail-item small {
  color: #8d919a;
  font-size: 8px;
}

.brand-detail-item strong {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-detail-arrow {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #8c919b;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-price-item {
  grid-template-columns: auto 1fr auto;
}

.brand-price-badge {
  padding: 5px 7px;
  color: #777c87;
  background: white;
  border: 1px solid #e2e4e8;
  border-radius: 6px;
  font-family: monospace;
  font-size: 7px;
}

.brand-modal-tip {
  margin: 18px 0 0;
  padding-top: 17px;
  color: #969aa3;
  border-top: 1px solid #eceef1;
  font-size: 9px;
  text-align: center;
}

body.modal-open {
  overflow: hidden;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 120px;
}

.faq-heading > p:not(.section-kicker) {
  margin: 24px 0 28px;
}

.accordion {
  border-top: 1px solid var(--line-strong);
}

.accordion-item {
  border-bottom: 1px solid var(--line-strong);
}

.accordion-item > button {
  width: 100%;
  min-height: 78px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.accordion-item button span {
  font-size: 15px;
  font-weight: 650;
}

.accordion-item button i {
  position: relative;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}

.accordion-item button i::before,
.accordion-item button i::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 4px;
  width: 13px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.25s ease;
}

.accordion-item button i::after {
  transform: rotate(90deg);
}

.accordion-item.is-open button i::after {
  transform: rotate(0deg);
}

.accordion-panel {
  padding: 0 40px 23px 0;
}

.accordion-panel p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.cta-section {
  padding: 0 0 32px;
}

.cta-card {
  position: relative;
  min-height: 360px;
  padding: 68px 72px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  color: white;
  background: #111216;
  border-radius: 24px;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(90deg, transparent 35%, #000 100%);
}

.cta-glow {
  position: absolute;
  right: 4%;
  bottom: -65%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(100, 111, 255, 0.34), transparent 67%);
  border-radius: 50%;
}

.cta-copy,
.cta-actions {
  position: relative;
  z-index: 2;
}

.cta-copy .section-kicker {
  color: #858cff;
}

.cta-copy h2 {
  font-size: clamp(38px, 4.3vw, 57px);
}

.cta-copy > p:last-child {
  margin: 20px 0 0;
  color: #999da7;
  font-size: 13px;
}

.cta-actions {
  min-width: 185px;
  display: grid;
  gap: 10px;
}

.button-light {
  color: var(--ink);
  background: white;
}

.button-dark-outline {
  color: white;
  background: rgba(255, 255, 255, 0.04);
  border-color: #3c3e45;
}

.button-light:hover {
  background: #f0f1f4;
}

.button-dark-outline:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: #555861;
}

.cta-connection {
  position: absolute;
  top: 20px;
  right: 220px;
  width: 350px;
  height: 200px;
  opacity: 0.5;
}

.cta-node {
  position: absolute;
  width: 9px;
  height: 9px;
  background: #6f78ff;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-sizing: content-box;
}

.cta-node-one {
  top: 20px;
  right: 25px;
}

.cta-node-two {
  top: 80px;
  left: 95px;
}

.cta-node-three {
  bottom: 20px;
  right: 105px;
}

.cta-path {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, #777fff, transparent);
  transform-origin: left center;
}

.cta-path-one {
  top: 86px;
  left: 104px;
  width: 235px;
  transform: rotate(-15deg);
}

.cta-path-two {
  top: 89px;
  left: 104px;
  width: 185px;
  transform: rotate(31deg);
}

.site-footer {
  padding: 80px 0 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  padding-bottom: 62px;
}

.footer-brand p {
  max-width: 260px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 80px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-links h3 {
  margin: 0 0 8px;
  color: #2e3137;
  font-size: 11px;
}

.footer-links a {
  color: #666b75;
  font-size: 11px;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6d727c;
  border-top: 1px solid var(--line);
  font-size: 10px;
}

.footer-compliance {
  max-width: 420px;
  text-align: right;
}

.has-contact-modal {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1250;
  padding: 24px;
  display: grid;
  place-items: center;
}

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

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(13, 15, 20, 0.58);
  border: 0;
  cursor: default;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.contact-modal-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  padding: 26px;
  overflow-y: auto;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(10, 12, 18, 0.24);
  outline: none;
}

.contact-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.contact-modal-header small {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
}

.contact-modal-header h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.contact-modal-close {
  min-width: 54px;
  min-height: 34px;
  padding: 0 13px;
  color: #565b65;
  background: #f5f6f8;
  border: 1px solid #e7e9ed;
  border-radius: 8px;
  cursor: pointer;
  font-size: 9px;
  font-weight: 750;
}

.contact-modal-close:hover {
  color: var(--ink);
  background: #eceef2;
}

.contact-modal-summary {
  margin: 17px 0 16px;
  color: #747984;
  font-size: 11px;
}

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

.contact-channel-card {
  min-width: 0;
  padding: 15px;
  background: #f8f9fa;
  border: 1px solid #e6e8ec;
  border-radius: 13px;
}

.contact-account-row {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-account {
  color: #292c32;
  font-size: 14px;
  line-height: 1.5;
  user-select: all;
}

.contact-copy-button {
  min-height: 28px;
  padding: 0 9px;
  flex: 0 0 auto;
  color: var(--accent-dark);
  background: #eef0ff;
  border: 1px solid #d8dcff;
  border-radius: 7px;
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.contact-copy-button:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.contact-copy-button:focus-visible {
  outline: 3px solid rgba(89, 100, 242, 0.24);
  outline-offset: 2px;
}

.contact-qr-placeholder,
.contact-qr-image {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e7e9ed;
  border-radius: 10px;
  overflow: hidden;
}

.contact-qr-placeholder {
  padding: 24px;
  flex-direction: column;
  gap: 5px;
  color: #777c86;
  border-style: dashed;
  text-align: center;
}

.contact-qr-placeholder strong {
  color: #4b4f57;
  font-size: 13px;
}

.contact-qr-placeholder span {
  font-size: 9px;
}

.contact-qr-image img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 320px;
  display: block;
  object-fit: contain;
}

.contact-modal-close:focus-visible,
.contact-modal-panel:focus-visible {
  outline: 3px solid rgba(89, 100, 242, 0.24);
  outline-offset: 3px;
}

@media (max-width: 680px) {
  .contact-modal {
    padding: 12px;
  }

  .contact-modal-panel {
    max-height: calc(100vh - 24px);
    padding: 20px 16px;
    border-radius: 15px;
  }

  .contact-channel-grid {
    grid-template-columns: 1fr;
  }

  .contact-qr-placeholder {
    min-height: 190px;
  }

  .contact-qr-image {
    min-height: 300px;
  }

  .contact-qr-image img {
    max-height: 300px;
  }
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  z-index: 300;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  background: var(--ink);
  border: 1px solid #303238;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(14, 15, 19, 0.24);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.toast svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #72daa2;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal.is-pending {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.is-pending.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 24px;
  }

  .hero-grid {
    gap: 32px;
  }

  .dashboard-card,
  .app-showcase-card {
    left: 0;
  }

  .floating-badge-ip {
    right: -4px;
  }

  .network-grid,
  .faq-grid {
    gap: 65px;
  }

  .plans-layout {
    gap: 70px;
  }
}

@media (max-width: 900px) {
  .login-link,
  .nav-actions .button-small {
    display: none;
  }

  .nav-wrap {
    justify-content: flex-start;
  }

  .desktop-nav {
    display: flex;
    margin-left: auto;
  }

  .nav-actions {
    display: none;
  }

  .hero {
    padding-top: 64px;
  }

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

  .hero-copy {
    max-width: 650px;
  }

  .hero-visual {
    width: min(100%, 620px);
    min-height: 510px;
    margin: 35px auto 0;
  }

  .dashboard-card,
  .app-showcase-card {
    left: 50%;
    transform: translateX(-50%);
  }

  .protocol-row {
    margin-top: 40px;
  }

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

  .feature-card-wide,
  .feature-card-code {
    grid-column: span 2;
  }

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

  .network-copy {
    max-width: 560px;
  }

  .region-card {
    max-width: 650px;
  }

  .plans-layout,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .plans-copy,
  .faq-heading {
    max-width: 560px;
  }

  .brand-section-head {
    gap: 50px;
  }

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

  .cta-card {
    padding: 58px 50px;
  }

  .footer-top {
    gap: 50px;
  }

  .footer-links {
    gap: 45px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    height: 66px;
  }

  .site-header.is-scrolled {
    height: 62px;
  }

  .brand-wordmark {
    font-size: 25px;
  }

  .brand-wordmark em {
    margin-left: 6px;
    padding: 5px 8px 4px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(47px, 14vw, 66px);
    letter-spacing: -0.065em;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.8;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-notes {
    gap: 14px;
    justify-content: center;
  }

  .hero-visual {
    min-height: 450px;
    margin-top: 30px;
  }

  .dashboard-card {
    width: 100%;
    padding: 18px;
    border-radius: 18px;
  }

  .app-showcase-card {
    width: 100%;
    padding: 18px;
    border-radius: 18px;
  }

  .app-cloud-stage {
    height: 285px;
    margin-top: 17px;
    border-radius: 14px;
  }

  .app-cloud-stage::before {
    width: 240px;
    height: 175px;
  }

  .app-cloud-stage::after {
    width: 165px;
    height: 116px;
  }

  .cloud-app {
    --cloud-scale: 0.82;
  }

  .cloud-app-1 {
    top: 17px;
    left: 7px;
  }

  .cloud-app-2 {
    top: 38px;
    left: 27%;
  }

  .cloud-app-3 {
    top: 13px;
    right: 9px;
  }

  .cloud-app-4 {
    top: 96px;
    left: -4px;
  }

  .cloud-app-5 {
    top: 95px;
    right: -4px;
  }

  .cloud-app-6 {
    left: 9px;
    bottom: 17px;
  }

  .cloud-app-7 {
    left: 25%;
    bottom: 65px;
  }

  .cloud-app-8 {
    bottom: 12px;
  }

  .cloud-app-9 {
    right: 25%;
    bottom: 67px;
  }

  .cloud-app-10 {
    right: 9px;
    bottom: 20px;
  }

  .cloud-message {
    width: 208px;
    min-height: 64px;
    padding: 9px 11px;
    gap: 9px;
  }

  .cloud-message-icon {
    width: 38px;
    height: 38px;
  }

  .cloud-message strong {
    font-size: 11px;
  }

  .cloud-dot-one {
    left: 50%;
  }

  .app-showcase-head {
    gap: 12px;
  }

  .app-showcase-head strong {
    font-size: 13px;
  }

  .app-online {
    padding: 6px 8px;
    font-size: 8px;
  }

  .app-logo-flow {
    margin-top: 17px;
    padding: 14px 0;
    border-radius: 13px;
  }

  .app-logo-chip {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
    border-radius: 14px;
  }

  .app-logo-chip::after {
    border-radius: 10px;
  }

  .app-logo-chip img {
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }

  .app-connection-hub {
    width: calc(100% - 24px);
    min-height: 62px;
    margin: 10px auto;
    padding: 9px 11px;
    gap: 9px;
  }

  .hub-icon {
    width: 38px;
    height: 38px;
  }

  .hub-copy strong {
    font-size: 10px;
  }

  .app-showcase-foot {
    min-height: 38px;
    margin-top: 13px;
    padding: 0 10px;
    gap: 10px;
    font-size: 8px;
  }

  .connection-grid {
    gap: 7px;
  }

  .connection-grid > div {
    padding: 10px 8px;
  }

  .connection-grid p {
    font-size: 8px;
  }

  .connection-grid strong {
    font-size: 9px;
  }

  .traffic-chart {
    height: 80px;
  }

  .floating-badge {
    display: none;
  }

  .protocol-row {
    min-height: 100px;
    margin-top: 22px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 17px;
  }

  .protocol-list {
    width: 100%;
    gap: 12px;
    justify-content: space-between;
  }

  .protocol-list span {
    font-size: 10px;
  }

  .section {
    padding: 88px 0;
  }

  .section-intro {
    display: block;
    margin-bottom: 38px;
  }

  .section-intro > p {
    margin-top: 20px;
  }

  .section h2 {
    font-size: 38px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .brand-section-head {
    display: block;
    margin-bottom: 34px;
  }

  .brand-section-head > p {
    margin-top: 18px;
  }

  .brand-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .brand-tabs {
    width: 100%;
  }

  .brand-tab {
    flex: 1;
  }

  .brand-toolbar-note {
    padding: 2px 7px 5px;
  }

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

  .brand-card {
    min-height: 260px;
  }

  .brand-modal {
    align-items: flex-end;
    padding: 0;
  }

  .brand-modal-dialog {
    width: 100%;
    max-height: 90vh;
    padding: 25px 20px 22px;
    border-radius: 22px 22px 0 0;
  }

  .brand-modal-close {
    top: 16px;
    right: 16px;
  }

  .brand-modal-head {
    padding-right: 40px;
    gap: 13px;
  }

  .brand-modal-mark {
    width: 55px;
    height: 55px;
    border-radius: 15px;
  }

  .brand-modal-head h2 {
    font-size: 19px;
  }

  .brand-detail-grid {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .brand-detail-item {
    min-height: 78px;
  }

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

  .feature-card,
  .feature-card-wide,
  .feature-card-code {
    grid-column: auto;
    min-height: 310px;
  }

  .feature-card-wide {
    display: block;
    min-height: 510px;
  }

  .feature-card-code {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
  }

  .node-visual {
    min-height: 275px;
  }

  .code-window {
    margin-top: 12px;
  }

  .network-grid {
    gap: 52px;
  }

  .region-card {
    padding: 14px;
  }

  .region-item {
    grid-template-columns: auto 1fr auto;
    padding: 11px 10px;
  }

  .latency {
    display: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .step-card {
    min-height: 210px;
  }

  .step-line {
    width: 1px;
    height: 30px;
    margin-left: 49px;
    background: repeating-linear-gradient(
      180deg,
      #cfd2d8 0,
      #cfd2d8 4px,
      transparent 4px,
      transparent 8px
    );
  }

  .plan-item {
    grid-template-columns: auto 1fr;
  }

  .plan-content {
    display: grid;
    gap: 9px;
  }

  .plan-item > svg {
    display: none;
  }

  .faq-grid {
    gap: 46px;
  }

  .cta-section {
    padding-bottom: 20px;
  }

  .cta-card {
    min-height: 480px;
    padding: 45px 27px 30px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 18px;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-connection {
    right: -80px;
    bottom: 100px;
    top: auto;
    transform: scale(0.8);
  }

  .site-footer {
    padding-top: 65px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-compliance {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .desktop-nav {
    gap: 11px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .brand-wordmark {
    font-size: 23px;
  }

  .brand-wordmark em {
    margin-left: 5px;
    padding: 4px 7px 3px;
    font-size: 12px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
