:root {
  --ink: #071847;
  --muted: #53688c;
  --blue: #0d66ff;
  --blue-deep: #054bd7;
  --orange: #ff6a13;
  --orange-deep: #f0440b;
  --line: rgba(35, 84, 168, 0.16);
  --page: #f8faff;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(24, 72, 150, 0.12);
  --header-height: 98px;
}

[hidden] {
  display: none !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 79% 25%, rgba(68, 139, 255, 0.11), transparent 30%),
    radial-gradient(circle at 15% 52%, rgba(74, 129, 255, 0.07), transparent 27%),
    linear-gradient(180deg, #fcfdff 0%, #f7faff 55%, #f4f7ff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(320px, 1fr);
  align-items: center;
  height: var(--header-height);
  padding: 0 clamp(26px, 4vw, 68px);
  border-bottom: 1px solid rgba(33, 83, 170, 0.12);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 5px 25px rgba(30, 72, 145, 0.035);
  backdrop-filter: blur(24px) saturate(1.4);
}

.brand-link {
  display: inline-flex;
  width: max-content;
  border-radius: 14px;
  outline: none;
}

.brand-link:focus-visible,
.nav-trigger:focus-visible,
.button:focus-visible,
.mobile-menu:focus-visible,
.feature-card a:focus-visible,
.feature-card button:focus-visible {
  outline: 3px solid rgba(18, 102, 255, 0.3);
  outline-offset: 4px;
}

.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.logo-mark {
  width: 55px;
  height: 55px;
  filter: drop-shadow(0 8px 13px rgba(27, 95, 231, 0.16));
}

.logo-word {
  color: #0a1945;
  font-size: 35px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}

.logo-lockup--compact .logo-mark {
  width: 50px;
  height: 50px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.3vw, 42px);
}

.nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: #07143a;
  cursor: pointer;
  font-size: 16px;
  font-weight: 680;
}

.nav-trigger::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

.nav-trigger:hover::after,
.nav-trigger.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-trigger__chevron {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  opacity: 0.48;
  transform: rotate(45deg);
  transition: 180ms ease;
}

.nav-trigger.is-active .nav-trigger__chevron {
  margin-top: 3px;
  transform: rotate(225deg);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 56px;
  padding: 0 27px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 730;
  letter-spacing: -0.015em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button--outline {
  border-color: #0c60ef;
  background: rgba(255, 255, 255, 0.8);
  color: #0758dd;
  box-shadow: 0 8px 20px rgba(26, 103, 232, 0.06);
}

.button--outline:hover {
  box-shadow: 0 13px 28px rgba(24, 93, 220, 0.14);
}

.button--primary {
  min-width: 255px;
  background: linear-gradient(135deg, #147cff 0%, #065cf0 68%, #0347d3 100%);
  color: #fff;
  box-shadow: 0 17px 35px rgba(0, 87, 239, 0.25), inset 0 1px rgba(255, 255, 255, 0.3);
}

.button--primary:hover {
  box-shadow: 0 22px 42px rgba(0, 83, 230, 0.33), inset 0 1px rgba(255, 255, 255, 0.3);
}

.button--primary svg:last-child {
  margin-left: 4px;
}

.button--pro {
  min-width: 207px;
  background: linear-gradient(135deg, #ff8a19 0%, #ff6510 54%, #f03a0b 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(242, 77, 11, 0.23), inset 0 1px rgba(255, 255, 255, 0.3);
}

.button--pro:hover {
  box-shadow: 0 21px 42px rgba(242, 77, 11, 0.31), inset 0 1px rgba(255, 255, 255, 0.3);
}

.mobile-menu {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
}

.mega-menu-scrim {
  position: absolute;
  z-index: 1;
  top: var(--header-height);
  left: 50%;
  width: 100vw;
  height: calc(100vh - var(--header-height));
  border: 0;
  background: rgba(7, 19, 51, 0.16);
  backdrop-filter: blur(3px);
  transform: translateX(-50%);
}

.mega-menu {
  position: absolute;
  z-index: 2;
  top: calc(var(--header-height) - 1px);
  left: 50%;
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  width: min(920px, calc(100vw - 70px));
  padding: 22px;
  border: 1px solid rgba(36, 90, 177, 0.14);
  border-radius: 0 0 25px 25px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 32px 80px rgba(23, 54, 110, 0.2);
  transform: translateX(-50%);
  animation: menu-in 180ms ease-out both;
}

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translate(-50%, -8px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.mega-menu__intro {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 27px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 80% 15%, rgba(80, 153, 255, 0.24), transparent 28%),
    linear-gradient(145deg, #edf5ff, #f8fbff);
}

.mega-menu__intro > span {
  color: #0d67ef;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mega-menu__intro h2 {
  margin: 12px 0 8px;
  font-size: 29px;
  letter-spacing: -0.04em;
}

.mega-menu__intro p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.mega-menu__intro button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 18px 0 3px;
  border: 0;
  background: transparent;
  color: #075ce5;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
}

.mega-menu__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 5px 4px 5px 18px;
}

.mega-menu__links a {
  display: grid;
  grid-template-columns: 43px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 77px;
  padding: 10px 13px;
  border: 1px solid transparent;
  border-radius: 16px;
  transition: 160ms ease;
}

.mega-menu__links a:hover {
  border-color: rgba(34, 95, 205, 0.13);
  background: #f6f9ff;
  transform: translateY(-1px);
}

.mega-menu__icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(31, 99, 217, 0.14);
  border-radius: 13px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 8px 20px rgba(32, 84, 176, 0.08);
}

.mega-menu__links strong,
.mega-menu__links small {
  display: block;
}

.mega-menu__links strong {
  font-size: 14px;
}

.mega-menu__links small {
  margin-top: 4px;
  color: #7a8ba8;
  font-size: 11px;
}

.mega-menu__links > a > svg {
  color: #8ba0c1;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(390px, 0.84fr) minmax(520px, 1.16fr);
  align-items: center;
  width: min(1460px, calc(100% - 64px));
  min-height: 570px;
  margin: 0 auto;
  padding: 54px 10px 26px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -50px;
  left: -180px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(62, 132, 255, 0.06);
  filter: blur(70px);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding-left: clamp(7px, 1vw, 18px);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 19px;
  padding: 8px 12px;
  border: 1px solid rgba(28, 100, 227, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.67);
  color: #135ece;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(47, 99, 192, 0.07);
}

.hero-copy h1 {
  max-width: 640px;
  margin: 0;
  color: #071846;
  font-size: clamp(58px, 5.7vw, 91px);
  font-weight: 820;
  letter-spacing: -0.067em;
  line-height: 0.98;
}

.hero-copy h1 span {
  display: block;
  margin-top: 5px;
  background: linear-gradient(115deg, #0759e4, #177dff 55%, #0e55e6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy > p {
  max-width: 565px;
  margin: 25px 0 0;
  color: #52678c;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 35px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 25px;
  color: #6a7d9c;
  font-size: 11px;
  font-weight: 670;
}

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

.hero-proof i {
  width: 7px;
  height: 7px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #2f94ff;
  box-shadow: 0 0 0 3px rgba(47, 148, 255, 0.16);
}

.hero-art {
  position: relative;
  z-index: 2;
  align-self: stretch;
  min-height: 470px;
}

.hero-art__glow {
  position: absolute;
  top: 9%;
  right: 5%;
  width: 77%;
  height: 78%;
  border-radius: 50%;
  background: rgba(50, 132, 255, 0.2);
  filter: blur(80px);
  opacity: 0.55;
}

.hero-art img {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(850px, 118%);
  height: auto;
  filter: saturate(1.03) contrast(1.02);
  mix-blend-mode: multiply;
  object-fit: contain;
  transform: translate(-48%, -50%);
  animation: hero-float 7s ease-in-out infinite;
}

@keyframes hero-float {
  0%,
  100% {
    transform: translate(-48%, -50%) rotate(-0.5deg);
  }
  50% {
    transform: translate(-48%, calc(-50% - 9px)) rotate(0.5deg);
  }
}

.hero-orbit-fallback {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 53%;
  display: grid;
  width: 420px;
  height: 300px;
  place-items: center;
  transform: translate(-50%, -50%);
}

.fallback-ring {
  position: absolute;
  border: 1px solid rgba(28, 116, 255, 0.35);
  border-radius: 50%;
}

.fallback-ring--one {
  width: 100%;
  height: 48%;
  transform: rotate(-13deg);
}

.fallback-ring--two {
  width: 79%;
  height: 79%;
  transform: rotate(49deg);
}

.fallback-core {
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 27%, #7ec8ff, #075ff2 57%, #0038aa);
  box-shadow: 0 0 0 18px rgba(53, 131, 255, 0.12), 0 30px 70px rgba(0, 79, 216, 0.28);
}

.hero-art img[src] + .hero-orbit-fallback {
  opacity: 0;
}

.feature-section {
  position: relative;
  z-index: 5;
  width: min(1460px, calc(100% - 64px));
  margin: 0 auto;
  padding: 17px 0 88px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 24px;
  padding: 0 5px;
}

.section-heading span {
  color: #1766dc;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 7px 0 0;
  color: #0a1b49;
  font-size: clamp(23px, 2vw, 31px);
  letter-spacing: -0.035em;
}

.section-heading > button,
.site-footer > button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: #0b63e7;
  cursor: pointer;
  font-size: 13px;
  font-weight: 760;
}

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

.feature-card {
  --card-color: #1572ff;
  --card-soft: rgba(35, 116, 255, 0.12);
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 307px;
  flex-direction: column;
  padding: 25px 26px 20px;
  border: 1px solid rgba(34, 88, 179, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 83% 13%, var(--card-soft), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 255, 0.89));
  box-shadow: 0 18px 45px rgba(32, 72, 143, 0.09), inset 0 1px rgba(255, 255, 255, 0.8);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card::before {
  position: absolute;
  top: -20%;
  right: -13%;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--card-soft);
  filter: blur(40px);
  content: "";
}

.feature-card:hover {
  border-color: color-mix(in srgb, var(--card-color) 35%, transparent);
  box-shadow: 0 27px 58px rgba(30, 72, 150, 0.15), inset 0 1px rgba(255, 255, 255, 0.9);
  transform: translateY(-7px);
}

.feature-card--violet {
  --card-color: #6a46ed;
  --card-soft: rgba(112, 73, 236, 0.13);
}

.feature-card--cyan {
  --card-color: #08a9c8;
  --card-soft: rgba(19, 184, 214, 0.14);
}

.feature-card--orange {
  --card-color: #f4760c;
  --card-soft: rgba(248, 119, 14, 0.15);
}

.feature-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.feature-card__icon {
  display: grid;
  width: 67px;
  height: 67px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--card-color);
  box-shadow: 0 10px 27px var(--card-soft), inset 0 0 0 1px var(--card-soft);
  backdrop-filter: blur(15px);
}

.feature-card__number {
  color: color-mix(in srgb, var(--card-color) 55%, #9cabca);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  position: relative;
  z-index: 2;
  max-width: 220px;
  margin: 20px 0 5px;
  font-size: 23px;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.feature-card > p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #6b7c9b;
  font-size: 12px;
}

.feature-card__visual {
  position: absolute;
  right: 0;
  bottom: 44px;
  left: 0;
  height: 113px;
  color: var(--card-color);
}

.mini-chart {
  overflow: visible;
  width: 100%;
  height: 100%;
}

.mini-chart__line {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.2;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 4px 7px var(--card-soft));
  stroke-dasharray: 650;
  stroke-dashoffset: 650;
  animation: draw-line 1.7s 0.25s ease forwards;
}

.mini-chart circle {
  fill: #fff;
  stroke: currentColor;
  stroke-width: 3;
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

.mini-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  gap: 10px;
  padding: 7px 30px 0;
}

.mini-bars span {
  width: 16px;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--card-color) 67%, white), color-mix(in srgb, var(--card-color) 17%, white));
  box-shadow: 0 5px 12px var(--card-soft);
  animation: bar-rise 850ms ease-out both;
  transform-origin: bottom;
}

@keyframes bar-rise {
  from {
    opacity: 0;
    transform: scaleY(0.15);
  }
}

.network-map {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0.82;
}

.network-map::before {
  position: absolute;
  inset: 18px 27px 6px;
  border-radius: 48% 52% 55% 45%;
  background:
    radial-gradient(circle at 20% 33%, currentColor 0 1.6px, transparent 2.2px) 0 0 / 9px 9px;
  content: "";
  opacity: 0.24;
  mask-image: radial-gradient(ellipse, #000 28%, transparent 72%);
}

.network-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.network-map path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  opacity: 0.35;
}

.map-dot {
  position: absolute;
  z-index: 2;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px var(--card-soft), 0 0 16px currentColor;
}

.map-dot--1 { top: 27px; left: 26%; }
.map-dot--2 { top: 54px; left: 44%; }
.map-dot--3 { top: 31px; left: 62%; }
.map-dot--4 { top: 78px; left: 72%; }
.map-dot--5 { top: 82px; left: 33%; }

.feature-card__footer {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 17px;
  left: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-card__footer button {
  padding: 7px 0;
  border: 0;
  background: transparent;
  color: var(--card-color);
  cursor: pointer;
  font-size: 12px;
  font-weight: 770;
}

.feature-card__footer a {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--card-color);
  box-shadow: 0 10px 25px rgba(38, 77, 151, 0.13);
  transition: 180ms ease;
}

.feature-card__footer a:hover {
  background: var(--card-color);
  color: #fff;
  transform: translateX(4px);
}

.site-footer {
  display: flex;
  align-items: center;
  width: min(1460px, calc(100% - 64px));
  margin: 0 auto;
  padding: 34px 4px 40px;
  border-top: 1px solid rgba(35, 84, 168, 0.13);
}

.site-footer .logo-mark {
  width: 34px;
  height: 34px;
}

.site-footer .logo-word {
  font-size: 23px;
}

.site-footer p {
  margin: 0 0 0 25px;
  color: #7889a5;
  font-size: 12px;
}

.site-footer > button {
  margin-left: auto;
}

.drawer-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  visibility: hidden;
  border: 0;
  background: rgba(4, 14, 42, 0.34);
  cursor: default;
  opacity: 0;
  backdrop-filter: blur(7px);
  transition: opacity 250ms ease, visibility 250ms ease;
}

.drawer-backdrop.is-visible {
  visibility: visible;
  opacity: 1;
}

.tool-drawer {
  position: fixed;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  width: min(430px, calc(100vw - 18px));
  flex-direction: column;
  border-right: 1px solid rgba(39, 90, 175, 0.14);
  background: rgba(250, 252, 255, 0.98);
  box-shadow: 30px 0 90px rgba(8, 31, 77, 0.24);
  transform: translateX(-105%);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tool-drawer.is-open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  padding: 0 24px 0 27px;
  border-bottom: 1px solid rgba(35, 84, 168, 0.12);
}

.drawer-header .logo-mark {
  width: 42px;
  height: 42px;
}

.drawer-header .logo-word {
  font-size: 27px;
}

.drawer-header > button,
.drawer-search > button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(29, 83, 175, 0.12);
  border-radius: 13px;
  background: #fff;
  color: #5c7196;
  cursor: pointer;
}

.drawer-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 19px 22px 15px;
  padding: 0 12px 0 15px;
  border: 1px solid rgba(31, 89, 190, 0.14);
  border-radius: 15px;
  background: #fff;
  color: #8292ad;
  box-shadow: 0 10px 28px rgba(38, 79, 153, 0.06);
}

.drawer-search:focus-within {
  border-color: rgba(12, 101, 246, 0.4);
  box-shadow: 0 0 0 4px rgba(25, 112, 255, 0.08);
}

.drawer-search input {
  width: 100%;
  height: 52px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
}

.drawer-search input::placeholder {
  color: #95a3ba;
}

.drawer-search > button {
  width: 29px;
  height: 29px;
  border: 0;
  background: #f0f4fb;
}

.drawer-content {
  overflow: auto;
  flex: 1;
  padding: 0 22px 20px;
  overscroll-behavior: contain;
}

.drawer-content::-webkit-scrollbar {
  width: 5px;
}

.drawer-content::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #ccd7e9;
}

.drawer-label {
  display: block;
  margin: 13px 5px 10px;
  color: #8a9ab4;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.drawer-groups {
  display: grid;
  gap: 9px;
}

.drawer-group {
  overflow: hidden;
  border: 1px solid rgba(31, 86, 177, 0.11);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.78);
  transition: 180ms ease;
}

.drawer-group.is-active {
  border-color: rgba(23, 101, 234, 0.23);
  box-shadow: 0 10px 27px rgba(39, 84, 165, 0.07);
}

.drawer-group > button {
  display: grid;
  grid-template-columns: 43px 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.drawer-group__icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 13px;
  background: #edf4ff;
  color: #1269ef;
}

.drawer-group > button strong,
.drawer-group > button small {
  display: block;
}

.drawer-group > button strong {
  font-size: 14px;
}

.drawer-group > button small {
  margin-top: 3px;
  color: #93a0b6;
  font-size: 10px;
}

.drawer-group > button i {
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-right: 1.8px solid #7f90aa;
  border-bottom: 1.8px solid #7f90aa;
  transform: rotate(45deg);
  transition: 180ms ease;
}

.drawer-group > button i.is-expanded {
  margin-top: 5px;
  transform: rotate(225deg);
}

.drawer-group__items {
  display: grid;
  max-height: 0;
  gap: 4px;
  padding: 0 10px;
  opacity: 0;
  transition: max-height 300ms ease, opacity 220ms ease, padding 300ms ease;
}

.drawer-group__items.is-expanded {
  max-height: 360px;
  padding: 0 10px 10px;
  opacity: 1;
}

.drawer-group__items a {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 5px 9px;
  border-radius: 12px;
  color: #354b72;
  font-size: 12px;
  font-weight: 680;
  transition: 150ms ease;
}

.drawer-group__items a:hover {
  background: #f0f5ff;
  color: #075ddf;
  transform: translateX(2px);
}

.drawer-group__items a > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(30, 89, 185, 0.1);
  border-radius: 10px;
  background: #fff;
}

.drawer-group__items a > svg {
  color: #9aa8bd;
}

.search-results {
  display: grid;
  gap: 7px;
}

.search-results > a {
  display: grid;
  grid-template-columns: 43px 1fr auto auto;
  align-items: center;
  gap: 11px;
  min-height: 62px;
  padding: 8px 13px;
  border: 1px solid rgba(31, 86, 177, 0.11);
  border-radius: 15px;
  background: #fff;
  transition: 150ms ease;
}

.search-results > a:hover {
  border-color: rgba(20, 102, 239, 0.25);
  box-shadow: 0 9px 24px rgba(31, 78, 160, 0.07);
  transform: translateY(-1px);
}

.search-results > a > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 12px;
  background: #edf4ff;
  color: var(--blue);
}

.search-results strong {
  font-size: 12px;
}

.search-results small {
  color: #8c9ab1;
  font-size: 10px;
}

.search-results > a > svg {
  color: #9cabc1;
}

.empty-state {
  display: grid;
  min-height: 210px;
  place-items: center;
  align-content: center;
  border: 1px dashed rgba(44, 94, 179, 0.2);
  border-radius: 18px;
  color: #8b9ab3;
}

.empty-state strong {
  margin-top: 12px;
  color: #415579;
}

.empty-state p {
  margin: 4px 0 0;
  font-size: 11px;
}

.drawer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 18px 18px;
  padding: 14px;
  border: 1px solid rgba(255, 127, 28, 0.18);
  border-radius: 17px;
  background: linear-gradient(135deg, #fff8f1, #fff);
  box-shadow: 0 13px 30px rgba(166, 79, 15, 0.07);
}

.drawer-footer > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-footer > div > span {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, #ff8d20, #f24b0d);
  color: #fff;
}

.drawer-footer p {
  margin: 0;
}

.drawer-footer strong,
.drawer-footer small {
  display: block;
}

.drawer-footer strong {
  font-size: 11px;
}

.drawer-footer small {
  margin-top: 3px;
  color: #98765e;
  font-size: 8px;
}

.drawer-footer > button {
  padding: 9px 12px;
  border: 0;
  border-radius: 10px;
  background: #ff6811;
  color: #fff;
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
}

.modal-layer {
  position: fixed;
  z-index: 130;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 15, 42, 0.48);
  backdrop-filter: blur(9px);
  animation: fade-in 180ms ease both;
}

@keyframes fade-in {
  from { opacity: 0; }
}

.pro-modal {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: min(520px, 100%);
  padding: 39px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 130, 19, 0.22), transparent 32%),
    linear-gradient(145deg, #fff, #f7faff);
  box-shadow: 0 40px 100px rgba(4, 20, 57, 0.3);
  animation: modal-in 240ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
}

.pro-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  color: #6d7c95;
  cursor: pointer;
}

.pro-modal__badge {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 21px;
  border-radius: 17px;
  background: linear-gradient(135deg, #ff941e, #f0470c);
  color: #fff;
  box-shadow: 0 15px 30px rgba(239, 78, 10, 0.22);
}

.pro-modal__eyebrow {
  color: #f15c0b;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.17em;
}

.pro-modal h2 {
  margin: 10px 0 10px;
  font-size: clamp(27px, 5vw, 39px);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.pro-modal > p {
  margin: 0;
  color: #657897;
  font-size: 13px;
  line-height: 1.7;
}

.pro-modal ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.pro-modal li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #263c63;
  font-size: 12px;
  font-weight: 650;
}

.pro-modal li svg {
  color: #f26512;
}

.pro-modal__actions {
  display: flex;
  gap: 10px;
}

.pro-modal__actions a,
.pro-modal__actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 13px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}

.pro-modal__actions a {
  flex: 1;
  background: linear-gradient(135deg, #ff841c, #ed440b);
  color: #fff;
  box-shadow: 0 13px 27px rgba(234, 70, 8, 0.2);
}

.pro-modal__actions button {
  border: 1px solid var(--line);
  background: #fff;
  color: #5e7090;
}

.toast {
  position: fixed;
  z-index: 160;
  right: 20px;
  bottom: 20px;
  max-width: 360px;
  padding: 13px 17px;
  border: 1px solid rgba(21, 101, 236, 0.19);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(11, 39, 87, 0.2);
  color: #294469;
  font-size: 11px;
  font-weight: 650;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: 200ms ease;
}

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

@media (max-width: 1260px) {
  .site-header {
    grid-template-columns: minmax(190px, 0.8fr) auto minmax(250px, 0.8fr);
    padding: 0 28px;
  }

  .desktop-nav {
    gap: 17px;
  }

  .header-explore {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(390px, 0.9fr) minmax(430px, 1.1fr);
  }

  .hero-art img {
    width: 128%;
  }

  .feature-card {
    min-height: 290px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 1020px) {
  :root {
    --header-height: 82px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: var(--header-height);
  }

  .desktop-nav,
  .header-pro {
    display: none;
  }

  .mobile-menu {
    display: grid;
    place-items: center;
  }

  .logo-mark {
    width: 46px;
    height: 46px;
  }

  .logo-word {
    font-size: 29px;
  }

  .hero {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 42px));
    padding-top: 70px;
  }

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

  .hero-copy h1,
  .hero-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-kicker {
    margin-right: auto;
    margin-left: auto;
  }

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

  .hero-art {
    min-height: 410px;
  }

  .hero-art img {
    width: min(780px, 112%);
  }

  .feature-section,
  .site-footer {
    width: min(760px, calc(100% - 42px));
  }

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

@media (max-width: 650px) {
  .site-header {
    padding: 0 17px;
  }

  .logo-mark {
    width: 41px;
    height: 41px;
  }

  .logo-word {
    font-size: 25px;
  }

  .mobile-menu {
    width: 46px;
    height: 46px;
  }

  .hero {
    width: calc(100% - 30px);
    min-height: auto;
    padding: 54px 0 0;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-kicker {
    max-width: 100%;
    font-size: 9px;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 16vw, 69px);
  }

  .hero-copy > p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    gap: 11px;
    margin-top: 27px;
  }

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

  .hero-proof {
    display: none;
  }

  .hero-art {
    min-height: 310px;
  }

  .hero-art img {
    width: 128%;
  }

  .hero-orbit-fallback {
    width: 320px;
    height: 230px;
  }

  .feature-section {
    width: calc(100% - 30px);
    padding-top: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading > button {
    display: none;
  }

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

  .feature-card {
    min-height: 280px;
  }

  .site-footer {
    width: calc(100% - 30px);
  }

  .site-footer p {
    display: none;
  }

  .site-footer > button {
    font-size: 11px;
  }

  .pro-modal {
    padding: 31px 23px 24px;
  }

  .pro-modal__actions {
    flex-direction: column;
  }

  .pro-modal__actions a,
  .pro-modal__actions button {
    width: 100%;
  }
}

@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;
  }
}
