:root {
  color-scheme: dark;
  --bg: #0b0d0e;
  --bg-deep: #080a0b;
  --surface: #121416;
  --surface-2: #17191b;
  --surface-3: #1d2022;
  --text: #f5f6f7;
  --text-soft: #c2c5cb;
  --muted: #8f949c;
  --line: #303438;
  --line-soft: #24282b;
  --primary: #6972f6;
  --primary-bright: #7f87ff;
  --green: #79d768;
  --amber: #f0b646;
  --danger: #f16d7a;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --max: 1320px;
  --header-height: 78px;
  font-family: Inter, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
  background: var(--bg);
  overflow-x: clip;
  scrollbar-color: #363b40 var(--bg);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  border: 4px solid var(--bg);
  border-radius: 8px;
  background: #363b40;
}

::-webkit-scrollbar-thumb:hover {
  background: #4a5057;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 76% 9%, rgba(105, 114, 246, 0.07), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 100% 6px;
  opacity: 0.32;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(127, 135, 255, 0.75);
  outline-offset: 3px;
}

::selection {
  background: rgba(105, 114, 246, 0.42);
  color: white;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 100;
  padding: 9px 13px;
  border-radius: 8px;
  background: white;
  color: #111;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 9px clamp(16px, 3vw, 24px);
  border-bottom: 1px solid rgba(127, 135, 255, 0.2);
  background: linear-gradient(90deg, rgba(127, 135, 255, 0.13), rgba(85, 207, 200, 0.09));
  color: #c8cbff;
  font-size: 13px;
  font-weight: 620;
}

.site-notice[hidden] {
  display: none;
}

.site-notice p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  line-height: 1.45;
}

.notice-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--amber);
  animation: notice-pulse 2.4s ease-in-out infinite;
}

@keyframes notice-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(240, 182, 70, 0.4);
  }

  55% {
    box-shadow: 0 0 0 6px rgba(240, 182, 70, 0);
  }
}

.notice-close {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 160ms ease, background-color 160ms ease;
}

.notice-close:hover {
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}

.notice-close svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(11, 13, 14, 0.86);
  backdrop-filter: blur(18px);
}

.site-header::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #f2d34d, #75ca60, #55cfc8, #7f87ff, #bb6ae4, #ef5c74);
  content: "";
  opacity: 0.7;
}

.header-inner {
  width: min(calc(100% - 40px), var(--max));
  height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-size: 19px;
  font-weight: 720;
  letter-spacing: -0.025em;
}

.brand img {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.32));
}

.desktop-nav,
.mobile-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a:not(.button):hover,
.mobile-nav a:not(.button):hover,
.footer-links a:hover {
  color: white;
}

.desktop-nav a:not(.button) {
  position: relative;
}

.desktop-nav a:not(.button)::after {
  position: absolute;
  right: 100%;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #7f87ff, #55cfc8);
  content: "";
  transition: right 240ms ease;
}

.desktop-nav a:not(.button):hover::after,
.desktop-nav a[aria-current="page"]::after {
  right: 0;
}

.desktop-nav a[aria-current="page"] {
  color: white;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--primary-bright), #5d66eb);
  box-shadow: 0 12px 30px rgba(93, 102, 235, 0.22), inset 0 1px rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 14px;
  font-weight: 720;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 35px rgba(93, 102, 235, 0.3), inset 0 1px rgba(255, 255, 255, 0.24);
}

.button:active {
  transform: translateY(0);
}

.button:not(.button-secondary) {
  position: relative;
  overflow: hidden;
}

.button:not(.button-secondary)::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 34%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  content: "";
  pointer-events: none;
  animation: button-sheen 4.6s ease-in-out infinite;
}

@keyframes button-sheen {
  0%,
  58% {
    transform: translateX(-140%) skewX(-18deg);
  }

  88%,
  100% {
    transform: translateX(420%) skewX(-18deg);
  }
}

.button-secondary {
  border-color: #44494e;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
}

.button svg,
.text-link svg,
.menu-button svg,
.figure-expand svg,
.lightbox-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: white;
}

.mobile-nav {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 16px;
  padding: 18px;
  align-items: stretch;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

.mobile-nav a:not(.button) {
  padding: 10px 8px;
}

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  padding: 42px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.56fr);
  align-items: center;
  gap: clamp(50px, 6vw, 90px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(50px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 760;
}

.hero-copy > p {
  max-width: 610px;
  margin: 32px 0 0;
  color: var(--text-soft);
  font-size: clamp(19px, 1.65vw, 24px);
  line-height: 1.52;
  letter-spacing: -0.018em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.compatibility {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}

.compatibility::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(121, 215, 104, 0.09);
  content: "";
}

.product-frame {
  position: relative;
  width: min(100%, 300px);
  max-height: 535px;
  justify-self: center;
  border: 1px solid #3b3f43;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #111315;
  box-shadow: 0 48px 120px rgba(0, 0, 0, 0.52);
}

.product-frame::before {
  display: none;
  content: "";
}

.product-frame img {
  width: 100%;
  object-position: top;
}

.product-glow {
  position: absolute;
  inset: -8% -6%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(105, 114, 246, 0.16), transparent 68%);
  filter: blur(34px);
}

.workflow-band {
  margin-bottom: clamp(100px, 11vw, 160px);
  padding: clamp(44px, 5vw, 68px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008));
}

.workflow-band h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.workflow-band > h2 {
  text-align: center;
  font-size: clamp(30px, 3vw, 44px);
}

.workflow-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  margin-top: 48px;
}

.workflow-step {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.workflow-icon,
.feature-icon,
.purchase-mark,
.support-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid transparent;
  border-radius: 50%;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    conic-gradient(#f2d34d, #75ca60, #55cfc8, #6c8ff2, #bb6ae4, #ef5c74, #f2d34d) border-box;
  color: var(--text);
}

.workflow-icon svg,
.feature-icon svg,
.purchase-mark svg,
.support-mark svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-step h3,
.feature-row h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
}

.workflow-step p,
.feature-row p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.workflow-arrow {
  width: 64px;
  height: 1px;
  position: relative;
  background: #474b4f;
}

.workflow-arrow::after {
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid #747980;
  border-right: 1px solid #747980;
  content: "";
  transform: rotate(45deg);
}

.features {
  padding-bottom: clamp(104px, 12vw, 174px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 60px;
}

.section-heading p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 19px;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
}

.feature-layout + .feature-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.85fr);
  margin-top: 76px;
}

.feature-list {
  border-top: 1px solid var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--green);
}

.feature-media,
.manual-figure {
  position: relative;
  overflow: hidden;
  border: 1px solid #3a3e42;
  border-radius: var(--radius);
  background: #101214;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.feature-media img {
  width: 100%;
}

.feature-media,
.feature-media.figure-button {
  width: min(100%, 440px);
  max-height: 760px;
  justify-self: center;
}

.feature-media img,
.feature-layout-secondary .feature-media img {
  object-position: top;
}

.buy-support {
  padding-bottom: 86px;
}

.action-band {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(300px, auto);
  align-items: center;
  gap: 28px;
  padding: 30px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.009));
}

.action-band + .action-band {
  margin-top: 12px;
}

.action-band h2 {
  margin: 0;
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.action-band p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.action-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c8cbff;
  font-size: 14px;
  font-weight: 680;
}

.text-link:hover {
  color: white;
}

.text-link svg {
  transition: transform 200ms ease;
}

.text-link:hover svg {
  transform: translateX(3px);
}

.support-mark {
  color: var(--amber);
}

.setup-note {
  display: block;
  width: 100%;
  color: #70757d;
  font-size: 12px;
  text-align: right;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: var(--bg-deep);
}

.footer-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: 112px;
  padding: 28px 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.footer-brand {
  font-weight: 720;
}

.footer-tagline {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--muted);
  font-size: 14px;
}

.copyright {
  justify-self: end;
  color: #70757d;
  font-size: 13px;
}

.trademark-notice {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  color: #696e75;
  font-size: 11px;
  line-height: 1.55;
}

.setup-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  max-width: min(420px, calc(100vw - 44px));
  padding: 14px 18px;
  border: 1px solid #545c94;
  border-radius: 11px;
  background: #1a1d2d;
  box-shadow: var(--shadow);
  color: #e7e8ff;
  font-size: 14px;
}

.setup-toast[hidden] {
  display: none;
}

.lightbox {
  width: min(1180px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  padding: 0;
  border: 1px solid #484d51;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0d0f10;
  color: white;
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.7);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(7px);
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 112px);
  object-fit: contain;
}

.lightbox-bar {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 12px 9px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 13px;
}

.lightbox-close {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface-2);
  color: white;
}

/* Modern landing page */
.landing-page {
  background:
    url("assets/patterns/vector-color-grid.svg") 42px 24px / 320px 320px repeat,
    radial-gradient(circle at 76% 9%, rgba(105, 114, 246, 0.055), transparent 27rem),
    #090b0c;
  overflow-x: clip;
}

.landing-page .site-header {
  background: rgba(9, 11, 12, 0.9);
}

.landing-page .setup-note {
  display: none;
}

.landing-hero {
  min-height: calc(100vh - var(--header-height));
  padding: clamp(64px, 7vw, 108px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.64fr);
  align-items: center;
  gap: clamp(54px, 6vw, 96px);
}

.landing-hero-copy {
  position: relative;
  z-index: 2;
}

.landing-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(54px, 5.5vw, 80px);
  font-weight: 760;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.accent-gradient {
  background: linear-gradient(92deg, #f2d34d, #75ca60, #55cfc8, #7f87ff, #bb6ae4, #ef5c74, #f2d34d);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: accent-flow 10s linear infinite;
  filter: drop-shadow(0 0 26px rgba(127, 135, 255, 0.32));
}

@keyframes accent-flow {
  to {
    background-position: 300% 0;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 34px;
  padding: 8px 16px;
  border: 1px solid rgba(121, 215, 104, 0.32);
  border-radius: 999px;
  background: rgba(121, 215, 104, 0.08);
  color: #a9d8a2;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: badge-pulse 2.4s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(121, 215, 104, 0.4);
  }

  55% {
    box-shadow: 0 0 0 7px rgba(121, 215, 104, 0);
  }
}

.hero-badge,
.landing-hero-copy > h1,
.landing-hero-copy > p,
.landing-page .hero-actions,
.hero-meta {
  animation: rise-in 800ms cubic-bezier(0.2, 0.7, 0.2, 1) backwards;
}

.landing-hero-copy > h1 {
  animation-delay: 90ms;
}

.landing-hero-copy > p {
  animation-delay: 180ms;
}

.landing-page .hero-actions {
  animation-delay: 260ms;
}

.hero-meta {
  animation-delay: 380ms;
}

.hero-visual {
  animation: hero-in 950ms cubic-bezier(0.2, 0.7, 0.2, 1) 200ms backwards;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.95);
  }
}

.landing-hero-copy > p {
  max-width: 640px;
  margin: 34px 0 0;
  color: var(--text-soft);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.75;
  letter-spacing: -0.015em;
}

.landing-page .hero-actions {
  margin-top: 44px;
  gap: 16px;
}

.hero-meta {
  margin-top: 36px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.hero-meta strong {
  color: #aeb2ba;
  font-weight: 620;
}

.landing-page .hero-actions .button {
  min-height: 58px;
  padding: 0 34px;
  gap: 12px;
  font-size: 16px;
}

.landing-page .hero-actions .button:not(.button-secondary) {
  background: linear-gradient(135deg, #8b93ff, #5d66eb 55%, #7c5cf0);
  box-shadow:
    0 18px 46px rgba(105, 114, 246, 0.42),
    0 4px 14px rgba(105, 114, 246, 0.28),
    inset 0 1px rgba(255, 255, 255, 0.3);
}

.landing-page .hero-actions .button:not(.button-secondary):hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 56px rgba(105, 114, 246, 0.52),
    0 6px 18px rgba(105, 114, 246, 0.34),
    inset 0 1px rgba(255, 255, 255, 0.34);
}

.landing-page .hero-actions .button-secondary {
  border-color: #565c63;
  background: rgba(255, 255, 255, 0.045);
}

.landing-page .hero-actions .button-secondary:hover {
  border-color: #6b727a;
  background: rgba(255, 255, 255, 0.08);
}

.landing-page .hero-actions .button svg {
  transition: transform 200ms ease;
}

.landing-page .hero-actions .button:hover svg {
  transform: translateX(4px);
}

.hero-visual {
  position: relative;
  width: min(100%, 500px);
  justify-self: center;
}

.hero-aura {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.85;
  pointer-events: none;
}

.hero-aura-1 {
  top: -90px;
  left: -170px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(127, 135, 255, 0.62), transparent 70%);
  animation: aura-drift 16s ease-in-out infinite alternate, aura-hue 14s linear infinite;
}

.hero-aura-2 {
  right: -160px;
  bottom: -20px;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(85, 207, 200, 0.5), transparent 70%);
  animation: aura-drift 20s ease-in-out -7s infinite alternate-reverse, aura-hue 18s linear -5s infinite reverse;
}

.hero-aura-3 {
  top: 34%;
  left: -90px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(187, 106, 228, 0.46), transparent 70%);
  animation: aura-drift 23s ease-in-out -13s infinite alternate, aura-hue 21s linear -11s infinite;
}

@keyframes aura-hue {
  from {
    filter: blur(64px) hue-rotate(0deg);
  }

  to {
    filter: blur(64px) hue-rotate(360deg);
  }
}

@keyframes aura-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(46px, -34px, 0) scale(1.18);
  }
}

.landing-page .hero-product.figure-button {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: min(860px, calc(100vh - 140px));
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: #111315;
  -webkit-mask-image: linear-gradient(to bottom, black 58%, transparent 98%);
  mask-image: linear-gradient(to bottom, black 58%, transparent 98%);
  animation: hero-float 9s ease-in-out infinite;
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.landing-page .hero-product img {
  width: 100%;
  height: auto;
}

@property --ring-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.hero-ring {
  position: absolute;
  inset: -2% -5% 6%;
  z-index: 0;
  border-radius: 30px;
  background: conic-gradient(from var(--ring-angle, 0deg), #f2d34d, #75ca60, #55cfc8, #7f87ff, #bb6ae4, #ef5c74, #f2d34d);
  filter: blur(30px);
  opacity: 0.32;
  animation: ring-spin 10s linear infinite;
  pointer-events: none;
}

@keyframes ring-spin {
  to {
    --ring-angle: 360deg;
  }
}

.hero-scan {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 20%;
  background: linear-gradient(to bottom, transparent, rgba(127, 135, 255, 0.16) 42%, rgba(85, 207, 200, 0.14) 58%, transparent);
  transform: translateY(-110%);
  animation: hero-scan 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-scan {
  0% {
    transform: translateY(-110%);
  }

  65%,
  100% {
    transform: translateY(510%);
  }
}

.hero-chips {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(18, 20, 22, 0.84);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
  color: var(--text-soft);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  animation: chip-float 6s ease-in-out infinite;
}

.hero-chip i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dot);
  box-shadow: 0 0 10px var(--dot);
}

.hero-chip-1 {
  top: 9%;
  left: -12%;
}

.hero-chip-2 {
  top: 27%;
  right: -9%;
  animation-delay: -1.6s;
}

.hero-chip-3 {
  top: 56%;
  left: -16%;
  animation-delay: -3.1s;
}

.hero-chip-4 {
  top: 72%;
  right: -12%;
  animation-delay: -4.4s;
}

@keyframes chip-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-11px);
  }
}

.tool-story {
  position: relative;
  padding: clamp(96px, 10vw, 154px) 0;
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
  background: #0b0d0f;
}

.tool-story::before,
.tool-story::after {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  content: "";
  filter: blur(90px);
  pointer-events: none;
}

.tool-story::before {
  top: -180px;
  right: -140px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(105, 114, 246, 0.16), transparent 68%);
}

.tool-story::after {
  bottom: -200px;
  left: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(85, 207, 200, 0.1), transparent 68%);
}

.tool-story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.48fr);
  align-items: center;
  gap: clamp(62px, 7vw, 104px);
}

.tool-story-copy h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(45px, 4.7vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.tool-story-copy > p {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.62;
}

.workflow-rail {
  position: relative;
  display: grid;
  gap: 30px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-rail::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 21px;
  width: 1px;
  background: linear-gradient(var(--primary-bright), rgba(127, 135, 255, 0.15));
  content: "";
}

.workflow-rail li {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 20px;
}

.workflow-rail li > span {
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid var(--primary-bright);
  border-radius: 50%;
  background: #0b0d0f;
  color: white;
  font-size: 14px;
  font-weight: 720;
}

.workflow-rail h3 {
  margin: 1px 0 0;
  font-size: 17px;
  line-height: 1.35;
}

.workflow-rail p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.tool-index {
  max-width: 520px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 18px;
}

.tool-index-icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #34394e;
  border-radius: 14px;
  background: #12151a;
  color: var(--primary-bright);
}

.tool-index-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.tool-index strong {
  display: block;
  font-size: 15px;
}

.tool-index p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.tool-carousel {
  --carousel-interval: 5200ms;
  --stage-h: clamp(540px, 76vh, 820px);
  position: relative;
}

.carousel-stage {
  position: relative;
  display: grid;
  height: var(--stage-h);
  place-items: center;
}

.carousel-stage::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 84%;
  height: 74%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(105, 114, 246, 0.28), rgba(85, 207, 200, 0.13) 55%, transparent 72%);
  content: "";
  filter: blur(52px);
  animation: stage-glow 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes stage-glow {
  0%,
  100% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.14);
  }
}

.landing-page .carousel-stage .tool-shot.figure-button {
  position: relative;
  grid-area: 1 / 1;
  width: auto;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0;
  transform: translateX(30px) scale(0.97);
  transition: opacity 460ms ease, transform 460ms ease;
  pointer-events: none;
}

.landing-page .carousel-stage .tool-shot.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.landing-page .carousel-stage .tool-shot.is-active img {
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.42), 0 0 64px rgba(105, 114, 246, 0.15);
}

.landing-page .carousel-stage .tool-shot img {
  width: auto;
  max-width: 100%;
  max-height: var(--stage-h);
  border: 1px solid #34383c;
  border-radius: 14px;
  background: #111315;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.33);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

.carousel-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.carousel-tab {
  position: relative;
  overflow: hidden;
  padding: 9px 16px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.carousel-tab:hover {
  color: white;
  border-color: #4a4f54;
}

.carousel-tab.is-active {
  border-color: #4b51a5;
  background: rgba(105, 114, 246, 0.12);
  color: white;
}

.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-bright);
  transform: scaleX(0);
  transform-origin: left;
}

.carousel-tab.is-active .carousel-progress {
  animation: carousel-progress var(--carousel-interval) linear forwards;
}

.tool-carousel:hover .carousel-progress,
.tool-carousel:focus-within .carousel-progress {
  animation-play-state: paused;
}

@keyframes carousel-progress {
  to {
    transform: scaleX(1);
  }
}

.carousel-arrows {
  display: flex;
  gap: 8px;
}

.carousel-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: white;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, transform 160ms ease;
}

.carousel-arrow:hover {
  border-color: #4b51a5;
  background: var(--surface-2);
  transform: translateY(-1px);
}

.carousel-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #9ca2ff;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #7f87ff, #55cfc8);
  content: "";
}

.roadmap {
  position: relative;
  padding-top: clamp(92px, 10vw, 148px);
}

.roadmap::before {
  position: absolute;
  top: 30%;
  left: 50%;
  z-index: -1;
  width: min(760px, 90%);
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(105, 114, 246, 0.12), transparent 68%);
  content: "";
  filter: blur(70px);
  transform: translateX(-50%);
  pointer-events: none;
}

.roadmap-intro {
  max-width: 720px;
}

.roadmap-intro h2 {
  margin: 0;
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.roadmap-intro > p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.65;
}

.roadmap-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.roadmap-card {
  --status-rgb: 143, 148, 156;
  position: relative;
  padding: 28px 26px 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(240px circle at var(--mx, 50%) var(--my, -30%), rgba(var(--status-rgb), 0.1), transparent 60%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.006)),
    #0d0f11;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.roadmap-card::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--status-rgb), 0.75), transparent);
  content: "";
}

.roadmap-card::after {
  position: absolute;
  top: -70px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--status-rgb), 0.16), transparent 68%);
  content: "";
  filter: blur(30px);
  transition: opacity 260ms ease;
  pointer-events: none;
}

.roadmap-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--status-rgb), 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 52px rgba(0, 0, 0, 0.34),
    0 0 40px rgba(var(--status-rgb), 0.1);
}

.roadmap-card h3 {
  margin: 16px 0 0;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.roadmap-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.roadmap-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.roadmap-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.roadmap-card.is-now {
  --status-rgb: 121, 215, 104;
  border-color: #35583a;
}

.roadmap-card.is-next {
  --status-rgb: 127, 135, 255;
}

.roadmap-card.is-planned {
  --status-rgb: 240, 182, 70;
}

.roadmap-card.is-now .roadmap-status {
  border-color: #3c603d;
  background: rgba(58, 108, 57, 0.14);
  color: #a9d8a2;
}

.roadmap-card.is-now .roadmap-status i {
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(121, 215, 104, 0.18);
}

.roadmap-card.is-next .roadmap-status {
  border-color: #464c8f;
  background: rgba(105, 114, 246, 0.12);
  color: #b3b8ff;
}

.roadmap-card.is-next .roadmap-status i {
  background: var(--primary-bright);
  animation: status-pulse 2.2s ease-in-out infinite;
}

@keyframes status-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(127, 135, 255, 0.45);
  }

  55% {
    box-shadow: 0 0 0 7px rgba(127, 135, 255, 0);
  }
}

.roadmap-card.is-planned .roadmap-status i {
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(240, 182, 70, 0.15);
}

.reveal-enabled .roadmap-card[data-reveal]:nth-child(2) {
  transition-delay: 130ms;
}

.reveal-enabled .roadmap-card[data-reveal]:nth-child(3) {
  transition-delay: 260ms;
}

.faq-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  padding-block: clamp(72px, 8vw, 120px);
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  align-content: center;
  gap: clamp(54px, 8vw, 120px);
}

.faq-section::before {
  position: absolute;
  top: 12%;
  right: -170px;
  z-index: -1;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(105, 114, 246, 0.11), transparent 68%);
  content: "";
  filter: blur(80px);
  pointer-events: none;
}

.faq-intro .text-link {
  margin-top: 26px;
}

.faq-intro h2 {
  max-width: 570px;
  margin: 0;
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.faq-intro p {
  max-width: 580px;
  margin: 25px 0 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: clip;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.014);
  transition: border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.faq-list details:hover {
  border-color: #3d4247;
  background: rgba(255, 255, 255, 0.028);
}

.faq-list details[open] {
  border-color: rgba(127, 135, 255, 0.38);
  background: linear-gradient(rgba(127, 135, 255, 0.055), rgba(127, 135, 255, 0.015));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.faq-list summary {
  position: relative;
  padding: 21px 68px 21px 22px;
  color: var(--text);
  font-size: 17px;
  font-weight: 680;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
  transition: color 180ms ease;
}

.faq-list summary:hover {
  color: #c8cbff;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--primary-bright);
  content: "+";
  font-size: 19px;
  font-weight: 480;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 220ms ease, background-color 200ms ease, border-color 200ms ease;
}

.faq-list details[open] summary::after {
  border-color: rgba(127, 135, 255, 0.45);
  background: rgba(127, 135, 255, 0.16);
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: 0;
  padding: 0 68px 22px 22px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}


.maker {
  position: relative;
  margin-top: clamp(96px, 10vw, 150px);
  margin-bottom: 68px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #393d41;
  border-radius: 20px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.004)),
    #0d0f10;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.26);
}

.maker::before {
  position: absolute;
  top: -180px;
  left: 50%;
  width: min(720px, 90%);
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(105, 114, 246, 0.14), transparent 68%);
  content: "";
  filter: blur(70px);
  transform: translateX(-50%);
  pointer-events: none;
}

.maker-grid {
  padding: clamp(48px, 6vw, 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
}

.maker-copy h2 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(42px, 4.4vw, 62px);
  font-weight: 760;
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.maker-rule {
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 30px;
  border-radius: 10px;
  background: var(--primary-bright);
}

.maker-copy p {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--text-soft);
  font-size: clamp(15.5px, 1.2vw, 17px);
  line-height: 1.75;
}

.maker-copy p + p {
  margin-top: 16px;
}

@property --panel-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.purchase-panel {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid transparent;
  border-radius: 17px;
  background:
    radial-gradient(280px circle at var(--mx, 50%) var(--my, -40%), rgba(127, 135, 255, 0.09), transparent 60%) padding-box,
    linear-gradient(#0b0d0f, #0b0d0f) padding-box,
    conic-gradient(
        from var(--panel-angle),
        rgba(242, 211, 77, 0.7),
        rgba(117, 202, 96, 0.7),
        rgba(85, 207, 200, 0.7),
        rgba(127, 135, 255, 0.85),
        rgba(187, 106, 228, 0.7),
        rgba(239, 92, 116, 0.7),
        rgba(242, 211, 77, 0.7)
      )
      border-box;
  animation: panel-spin 10s linear infinite;
}

@keyframes panel-spin {
  to {
    --panel-angle: 360deg;
  }
}

.purchase-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.purchase-brand img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}

.purchase-brand-name {
  display: grid;
  gap: 1px;
  font-size: 17px;
  font-weight: 760;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.purchase-brand-name small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0;
}

.purchase-badge {
  margin-left: auto;
  padding: 6px 13px;
  border: 1px solid rgba(127, 135, 255, 0.34);
  border-radius: 999px;
  background: rgba(127, 135, 255, 0.1);
  color: #aeb3ff;
  font-size: 11.5px;
  font-weight: 720;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 26px 0 0;
}

.price-line strong {
  font-size: clamp(64px, 5vw, 78px);
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.045em;
}

.price-was {
  color: var(--muted);
  font-size: 24px;
  font-weight: 620;
  text-decoration-color: rgba(239, 92, 116, 0.7);
  text-decoration-thickness: 2px;
}

.price-save {
  align-self: center;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(121, 215, 104, 0.13);
  color: var(--green);
  font-size: 12.5px;
  font-weight: 730;
  white-space: nowrap;
}

.price-note {
  margin: 13px 0 26px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.license-list {
  display: grid;
  gap: 11px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.license-list li {
  position: relative;
  padding-left: 30px;
}

.license-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: rgba(121, 215, 104, 0.14);
  color: var(--green);
  content: "✓";
  font-size: 11px;
  font-weight: 750;
}

.purchase-panel .button {
  width: 100%;
}

.purchase-panel .text-link {
  margin-top: 28px;
}

.no-sub-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 15px 0 0;
  color: #a9d8a2;
  font-size: 13px;
  font-weight: 680;
}

.no-sub-line svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.upgrade-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.maker-support {
  padding: 28px clamp(32px, 6vw, 88px);
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border-top: 1px solid #393d41;
}

.maker-support .support-mark {
  border-color: #4b51a5;
  background: #12141b;
  color: #9ca2ff;
}

.maker-support .license-mark {
  border-color: #3c603d;
  background: #111713;
  color: var(--green);
}

.maker-support + .maker-support {
  border-top-style: dashed;
}

.maker-support h3 {
  margin: 0;
  font-size: 18px;
}

.maker-support p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.maker-support-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Scroll reveal */
.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-enabled [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

.reveal-enabled .workflow-rail li[data-reveal]:nth-child(2) {
  transition-delay: 140ms;
}

.reveal-enabled .workflow-rail li[data-reveal]:nth-child(3) {
  transition-delay: 280ms;
}

.reveal-enabled .purchase-panel[data-reveal] {
  transition-delay: 160ms;
}

/* Manual */
.manual-page {
  background: var(--bg);
}

.manual-shell {
  width: min(calc(100% - 24px), 1460px);
  min-height: calc(100vh - var(--header-height));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 262px minmax(0, 1fr);
  border-inline: 1px solid var(--line-soft);
}

.manual-sidebar {
  position: sticky;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
  padding: 24px 18px;
  border-right: 1px solid var(--line-soft);
  background: #101214;
  overflow-y: auto;
}

.manual-search {
  position: relative;
  margin-bottom: 18px;
}

.manual-search svg {
  position: absolute;
  top: 50%;
  left: 13px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.7;
  transform: translateY(-50%);
}

.manual-search input {
  width: 100%;
  height: 44px;
  padding: 0 12px 0 40px;
  border: 1px solid #3a3e42;
  border-radius: 9px;
  background: #171a1c;
  color: white;
  font-size: 13px;
}

.manual-search input:focus {
  border-color: var(--primary-bright);
  outline: 2px solid rgba(105, 114, 246, 0.2);
}

.manual-nav {
  display: grid;
  gap: 4px;
}

.manual-nav a {
  padding: 10px 12px;
  border-left: 2px solid transparent;
  border-radius: 0 8px 8px 0;
  color: #b4b8be;
  font-size: 13px;
  font-weight: 620;
}

.manual-nav a:hover {
  background: rgba(255, 255, 255, 0.035);
  color: white;
}

.manual-nav a.is-active {
  border-left-color: var(--primary-bright);
  background: linear-gradient(90deg, rgba(105, 114, 246, 0.18), transparent);
  color: #aeb3ff;
}

.manual-nav a[hidden] {
  display: none;
}

.search-empty {
  margin: 12px;
  color: var(--muted);
  font-size: 12px;
}

.sidebar-help {
  margin-top: 30px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  font-size: 12px;
}

.sidebar-help strong {
  display: block;
  margin-bottom: 6px;
  color: white;
  font-size: 13px;
}

.sidebar-help p {
  margin: 0;
}

.sidebar-help a {
  display: inline-flex;
  margin-top: 10px;
  color: #aeb3ff;
  font-weight: 680;
}

.manual-content {
  width: min(100%, 1040px);
  padding: 58px clamp(36px, 6vw, 90px) 120px;
}

.manual-intro {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.manual-intro h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.manual-intro p {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--text-soft);
  font-size: 19px;
}

.manual-section {
  padding-top: 58px;
}

.manual-section + .manual-section {
  margin-top: 20px;
  border-top: 1px solid var(--line-soft);
}

.manual-section h2 {
  margin: 0;
  font-size: clamp(29px, 3.2vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.038em;
}

.manual-section h3 {
  margin: 38px 0 0;
  font-size: 21px;
  line-height: 1.3;
}

.manual-section > p,
.manual-section li,
.manual-section td,
.manual-section th {
  color: #b8bcc2;
}

.manual-section > p {
  max-width: 780px;
  margin: 16px 0 0;
}

.manual-section strong {
  color: white;
}

.manual-section code,
.menu-path {
  padding: 2px 7px;
  border: 1px solid #34383c;
  border-radius: 6px;
  background: #171a1c;
  color: #e5e7ea;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.88em;
}

.quick-steps {
  display: grid;
  gap: 22px;
  margin-top: 30px;
  padding: 0;
  counter-reset: quick-step;
  list-style: none;
}

.quick-steps li {
  position: relative;
  min-height: 40px;
  padding-left: 54px;
  counter-increment: quick-step;
}

.quick-steps li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 8px 20px rgba(105, 114, 246, 0.22);
  color: white;
  content: counter(quick-step);
  font-size: 13px;
  font-weight: 750;
}

.quick-steps strong {
  display: block;
  margin-bottom: 2px;
}

.manual-figure {
  margin: 30px 0 0;
}

.manual-figure-narrow {
  width: min(100%, 445px);
  margin-inline: auto;
}

.manual-figure-medium {
  width: min(100%, 600px);
  margin-inline: auto;
}

.manual-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
  margin-top: 30px;
}

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

.manual-gallery .manual-figure {
  display: flex;
  margin: 0;
  flex-direction: column;
}

.manual-gallery-compact .manual-figure {
  height: 100%;
}

.manual-gallery-compact .figure-button-contain {
  min-height: 220px;
  padding: 42px 24px 24px;
  display: grid;
  place-items: center;
}

.manual-gallery-compact .figure-button-contain img {
  width: auto;
  max-height: 160px;
  object-fit: contain;
}

.figure-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.figure-button img {
  width: 100%;
  transition: transform 220ms ease;
}

.figure-button:hover img {
  transform: scale(1.01);
}

.figure-expand {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: auto;
  min-width: 38px;
  height: 38px;
  place-items: center;
  padding: 0 12px;
  border: 1px solid #494e52;
  border-radius: 9px;
  background: rgba(12, 14, 15, 0.82);
  color: white;
  font-size: 12px;
  font-weight: 680;
  white-space: nowrap;
  pointer-events: none;
}

.manual-figure figcaption {
  padding: 13px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.manual-legal {
  padding: 22px max(22px, calc((100vw - 1412px) / 2));
  border-top: 1px solid var(--line-soft);
  background: var(--bg-deep);
}

.manual-legal p {
  max-width: 940px;
  margin: 0 auto;
  color: #696e75;
  font-size: 11px;
  line-height: 1.55;
}

.callout-list,
.tool-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.callout-list li,
.tool-list li {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 0.65fr);
  gap: 22px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
}

.callout-list li::before {
  display: none;
}

.tool-list strong {
  font-size: 14px;
}

.callout-list span,
.tool-list span {
  color: #a8acb3;
  font-size: 14px;
}

.note {
  margin-top: 26px;
  padding: 17px 20px;
  border: 1px solid #3c603d;
  border-radius: 11px;
  background: rgba(58, 108, 57, 0.12);
  color: #b9d7b6;
}

.note-warning {
  border-color: #6a542f;
  background: rgba(117, 81, 27, 0.12);
  color: #dfc18b;
}

.table-wrap {
  margin-top: 26px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.manual-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.manual-table th,
.manual-table td {
  padding: 15px 17px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: top;
}

.manual-table th {
  background: #171a1c;
  color: white;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.manual-table tr:last-child td {
  border-bottom: 0;
}

.report-list {
  display: grid;
  gap: 11px;
  margin-top: 22px;
  padding-left: 22px;
}

.legal-content {
  width: min(calc(100% - 40px), 820px);
  min-height: calc(100vh - var(--header-height) - 112px);
  margin: 0 auto;
  padding: 74px 0 110px;
}

.legal-content h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  letter-spacing: -0.05em;
}

.legal-content h2 {
  margin: 46px 0 0;
  font-size: 24px;
}

.legal-content p,
.legal-content li {
  color: var(--text-soft);
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .product-frame {
    max-width: 360px;
    max-height: 700px;
    transform: none;
  }

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

  .workflow-arrow {
    width: 1px;
    height: 34px;
    margin-left: 29px;
  }

  .workflow-arrow::after {
    top: auto;
    right: -4px;
    bottom: 0;
    transform: rotate(135deg);
  }

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

  .feature-layout-secondary .feature-media {
    order: 2;
  }

  .action-band {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .action-controls {
    grid-column: 2;
    justify-content: flex-start;
  }

  .setup-note {
    text-align: left;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero {
    padding-top: 66px;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 68px);
  }

  .manual-shell {
    display: block;
    width: 100%;
    border: 0;
  }

  .manual-sidebar {
    position: static;
    width: min(calc(100% - 32px), 700px);
    height: auto;
    margin: 18px auto 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .manual-content {
    margin-inline: auto;
    padding-inline: 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 30px 0;
    gap: 18px;
  }

  .copyright {
    justify-self: start;
  }

  .trademark-notice {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .shell,
  .footer-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .hero {
    gap: 46px;
    padding-bottom: 58px;
  }

  .hero-copy > p {
    font-size: 18px;
  }

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

  .product-frame {
    width: min(100%, 360px);
  }

  .workflow-band {
    padding: 34px 22px;
  }

  .workflow-band > h2 {
    text-align: left;
  }

  .workflow-step {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .workflow-icon {
    width: 48px;
    height: 48px;
  }

  .workflow-arrow {
    margin-left: 24px;
  }

  .feature-row {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .action-band {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }

  .purchase-mark,
  .support-mark {
    width: 52px;
    height: 52px;
  }

  .action-controls {
    grid-column: auto;
    justify-content: stretch;
  }

  .action-controls .button,
  .action-controls .text-link {
    width: 100%;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .manual-content {
    padding: 44px 18px 90px;
  }

  .manual-intro h1 {
    font-size: 42px;
  }

  .callout-list li,
  .tool-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .manual-gallery,
  .manual-gallery-three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1120px) {
  .landing-hero {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 54px;
  }

  .hero-chip-1,
  .hero-chip-3 {
    left: -7%;
  }

  .hero-chip-2,
  .hero-chip-4 {
    right: -5%;
  }

  .landing-hero h1 {
    font-size: clamp(54px, 6.4vw, 72px);
  }

  .tool-story-grid {
    grid-template-columns: 1fr;
  }

  .tool-story-copy {
    max-width: 760px;
  }

  .faq-section {
    grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
    gap: 58px;
  }

  .maker-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .landing-hero {
    min-height: auto;
    padding: 64px 0 84px;
    grid-template-columns: 1fr;
  }

  .landing-hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    width: min(100%, 400px);
  }

  .landing-page .hero-product.figure-button {
    max-height: 680px;
  }

  .tool-carousel {
    --stage-h: clamp(470px, 80vw, 660px);
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .roadmap-track {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

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

  .purchase-panel {
    width: min(100%, 520px);
  }

  .maker-support {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .maker-support-actions {
    grid-column: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .landing-hero {
    padding: 52px 0 72px;
    gap: 48px;
  }

  .landing-hero h1 {
    font-size: clamp(44px, 12.5vw, 58px);
  }

  .landing-hero-copy > p {
    margin-top: 24px;
    font-size: 18px;
  }

  .landing-page .hero-actions {
    margin-top: 28px;
  }

  .hero-meta {
    margin-top: 23px;
  }

  .hero-visual {
    width: min(100%, 330px);
  }

  .landing-page .hero-product.figure-button {
    max-height: 580px;
  }

  .hero-chips {
    display: none;
  }

  .hero-aura {
    filter: blur(56px);
  }

  .tool-story {
    padding: 78px 0;
  }

  .tool-story-grid {
    gap: 52px;
  }

  .tool-story-copy h2 {
    font-size: 43px;
  }

  .tool-story-copy > p {
    font-size: 17px;
  }

  .workflow-rail {
    gap: 26px;
  }

  .workflow-rail li {
    gap: 16px;
  }

  .tool-carousel {
    --stage-h: clamp(420px, 110vw, 560px);
  }

  .carousel-controls {
    justify-content: center;
  }

  .faq-section {
    width: min(calc(100% - 36px), var(--max));
    padding-top: 78px;
  }

  .roadmap {
    width: min(calc(100% - 36px), var(--max));
    padding-top: 78px;
  }

  .roadmap-intro h2 {
    font-size: 41px;
  }

  .faq-intro h2 {
    font-size: 41px;
  }

  .faq-list summary {
    padding: 18px 56px 18px 16px;
    font-size: 16px;
  }

  .faq-list summary::after {
    right: 13px;
  }

  .faq-list details p {
    padding: 0 20px 19px 16px;
  }

  .maker {
    width: min(calc(100% - 20px), var(--max));
    margin-top: 82px;
    margin-bottom: 42px;
    border-radius: 16px;
  }

  .maker-grid {
    padding: 34px 24px;
  }

  .maker-copy h2 {
    font-size: 40px;
  }

  .maker-copy p {
    font-size: 15.5px;
  }

  .purchase-panel {
    padding: 26px 22px;
  }

  .purchase-brand {
    flex-wrap: wrap;
    gap: 11px;
  }

  .purchase-badge {
    margin-left: 0;
  }

  .price-line {
    flex-wrap: wrap;
    gap: 12px;
  }

  .price-line strong {
    font-size: 58px;
  }

  .price-was {
    font-size: 21px;
  }

  .maker-support {
    padding: 28px 24px;
    grid-template-columns: 1fr;
  }

  .maker-support-actions {
    width: 100%;
    grid-column: auto;
    align-items: stretch;
    flex-direction: column;
  }

  .maker-support-actions .button,
  .maker-support-actions .text-link {
    width: 100%;
  }
}

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