:root {
  --ink: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --paper: #fff;
  --soft: #f5f7fa;
  --navy: #0a1729;
  --navy2: #10243d;
  --cyan: #0ec5d4;
  --green: #21cf8f;
  --blue: #3157ff;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.12);
  font-family: Inter, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
.site-header {
  height: 76px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  gap: 34px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(228, 231, 236, 0.8);
}
.brand {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.brand-logo {
  display: block;
  width: 178px;
  height: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: auto;
}
.main-nav a,
.text-link {
  font-size: 14px;
  font-weight: 600;
  color: #344054;
}
.main-nav a:hover,
.text-link:hover {
  color: var(--blue);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  padding: 14px 21px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(49, 87, 255, 0.2);
  transition:
    0.2s transform,
    0.2s background,
    0.2s box-shadow;
}
.button:hover {
  transform: translateY(-1px);
  background: #2447e6;
  box-shadow: 0 12px 25px rgba(49, 87, 255, 0.28);
}
.button.small {
  padding: 10px 16px;
  font-size: 14px;
}
.button.ghost {
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}
.button.ghost:hover {
  background: var(--soft);
}
.button.full {
  width: 100%;
}
.button:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}
.menu-button {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}
.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 4px;
}
.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 98px 50px 80px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 64px;
  align-items: center;
  overflow: hidden;
}
.hero-copy {
  min-width: 0;
}
.release-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #d8e2ff;
  background: #f5f8ff;
  border-radius: 999px;
  padding: 7px 12px;
  color: #2743a4;
  font-weight: 700;
  font-size: 13px;
}
.release-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(33, 207, 143, 0.14);
}
.hero h1 {
  font-size: clamp(52px, 5.4vw, 82px);
  line-height: 1.04;
  letter-spacing: -4.5px;
  margin: 25px 0 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue);
}
.hero-lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  max-width: 590px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin: 32px 0 24px;
}
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: #667085;
  font-size: 12px;
}
.hero-notes span:before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 6px;
}
.product-frame {
  min-width: 660px;
  border: 1px solid #dce2eb;
  border-radius: 18px;
  background: #eef2f7;
  box-shadow: 0 35px 90px rgba(16, 33, 58, 0.2);
  overflow: hidden;
  transform: perspective(1300px) rotateY(-2deg) rotateX(1deg);
}
.window-bar {
  height: 46px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 15px;
  gap: 14px;
  color: #475467;
}
.window-bar > div {
  display: flex;
  gap: 6px;
}
.window-bar > div span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e5e7eb;
}
.window-bar > div span:first-child {
  background: #ff6b6b;
}
.window-bar > div span:nth-child(2) {
  background: #ffc857;
}
.window-bar > div span:last-child {
  background: #21cf8f;
}
.window-bar b {
  font-size: 12px;
}
.window-bar small {
  margin-left: auto;
  color: #1b9c70;
}
.product-body {
  height: 460px;
  display: grid;
  grid-template-columns: 145px 1fr;
}
.product-body aside {
  background: var(--navy);
  padding: 18px 12px;
  color: #91a4bd;
}
.aside-title {
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 1.4px;
  padding: 0 10px 8px;
}
.aside-title.second {
  margin-top: 26px;
}
.product-body aside a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px;
  border-radius: 7px;
  font-size: 11px;
  margin: 2px 0;
}
.product-body aside a b {
  margin-left: auto;
}
.product-body aside a.active {
  background: #1c3553;
  color: #fff;
}
.dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: #98a2b3;
}
.dot.online {
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(33, 207, 143, 0.12);
}
.dot.warning {
  background: #ffb547;
}
.workspace {
  padding: 22px;
  background: #f3f5f8;
}
.workspace-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.workspace-top small {
  display: block;
  color: #98a2b3;
  font-size: 9px;
}
.workspace-top strong {
  font-size: 19px;
}
.fake-actions {
  display: flex;
  gap: 8px;
  font-size: 9px;
}
.fake-actions span,
.fake-actions b {
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.fake-actions b {
  background: var(--blue);
  color: #fff;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}
.metric-row article {
  background: #fff;
  border: 1px solid #e5e9f0;
  border-radius: 9px;
  padding: 13px;
}
.metric-row small,
.metric-row em {
  display: block;
  font-size: 8px;
  color: #98a2b3;
  font-style: normal;
}
.metric-row strong {
  font-size: 24px;
  display: block;
  margin: 4px 0;
}
.metric-row em {
  color: #1b9c70;
}
.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.screen-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.screen {
  height: 104px;
  position: relative;
  overflow: hidden;
  background: #b7d8f4;
}
.screen:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 65%;
  background: linear-gradient(
    150deg,
    transparent 40%,
    rgba(255, 255, 255, 0.5) 41%,
    rgba(49, 87, 255, 0.3) 100%
  );
  clip-path: polygon(
    0 60%,
    35% 18%,
    57% 53%,
    75% 32%,
    100% 68%,
    100% 100%,
    0 100%
  );
}
.screen.violet {
  background: #d0c5fa;
}
.screen.night {
  background: #294461;
}
.screen.amber {
  background: #f4d59a;
}
.screen span {
  position: absolute;
  left: 8px;
  top: 8px;
  background: rgba(10, 23, 41, 0.7);
  color: #fff;
  border-radius: 3px;
  padding: 3px 5px;
  font-size: 7px;
}
.screen-grid footer {
  display: flex;
  align-items: center;
  padding: 9px;
  font-size: 9px;
}
.screen-grid footer .dot {
  margin-left: auto;
}
.proof-strip {
  max-width: 1180px;
  margin: 0 auto 50px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 23px 10px;
  display: flex;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
  color: #667085;
  font-size: 12px;
  font-weight: 700;
}
.proof-strip span:before {
  content: "◆";
  font-size: 7px;
  color: var(--cyan);
  margin-right: 9px;
}
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 100px 20px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 45px;
}
.section-heading > div {
  max-width: 700px;
}
.section-heading > p {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.7;
}
.section-heading.centered {
  text-align: center;
  display: block;
}
.section-heading.centered > div,
.section-heading.centered > p {
  margin-left: auto;
  margin-right: auto;
}
.kicker {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.kicker.light {
  color: #7be8ef;
}
.section h2,
.final-cta h2,
.download-panel h2 {
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.15;
  letter-spacing: -2px;
  margin: 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature-card {
  position: relative;
  background: var(--soft);
  border: 1px solid #e9ecf1;
  border-radius: 20px;
  padding: 36px;
  min-height: 330px;
  overflow: hidden;
}
.feature-card.large {
  grid-column: span 2;
  min-height: 300px;
}
.feature-number {
  color: #98a2b3;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}
.feature-card h3 {
  font-size: 26px;
  letter-spacing: -0.8px;
  margin: 40px 0 12px;
}
.feature-card p {
  color: var(--muted);
  line-height: 1.75;
  max-width: 610px;
}
.mini-table {
  position: absolute;
  right: 35px;
  bottom: 35px;
  width: 45%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 9px;
}
.mini-table span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px;
  font-size: 11px;
  border-bottom: 1px solid #eef0f3;
}
.mini-table span:last-child {
  border: 0;
}
.mini-table b {
  margin-left: auto;
  font-weight: 600;
  color: #667085;
}
.tile-visual {
  height: 110px;
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  padding: 8px;
  background: #111e32;
  border-radius: 12px;
}
.tile-visual i {
  background: linear-gradient(145deg, #27496d, #76a9d4);
  border-radius: 4px;
}
.tile-visual i:nth-child(2) {
  background: linear-gradient(145deg, #6c56a8, #bcafe8);
}
.tile-visual i:nth-child(3) {
  background: linear-gradient(145deg, #c28642, #f4d59a);
}
.cursor-visual {
  height: 110px;
  background: linear-gradient(135deg, #dbe9f7, #a7c7e5);
  border-radius: 12px;
  margin-top: 25px;
  position: relative;
}
.cursor-visual span {
  position: absolute;
  right: 12px;
  top: 12px;
  background: #ecfdf3;
  color: #087a55;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 10px;
}
.cursor-visual i {
  position: absolute;
  left: 45%;
  top: 45%;
  font-size: 35px;
  color: #10243d;
  font-style: normal;
}
.task-visual {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}
.task-visual span {
  padding: 10px 12px;
  border: 1px solid #d9e5dd;
  background: #fff;
  border-radius: 8px;
  color: #207c5d;
  font-size: 12px;
}
.dark-card {
  background: var(--navy);
  color: #fff;
}
.dark-card p {
  color: #aab8c9;
}
.privacy-line {
  position: absolute;
  right: 35px;
  bottom: 48px;
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.privacy-line span,
.privacy-line b {
  padding: 13px;
  background: #182d48;
  border: 1px solid #2b435f;
  border-radius: 9px;
  font-size: 11px;
}
.privacy-line b {
  color: #7be8ef;
}
.privacy-line i {
  font-size: 10px;
  color: #ffbf69;
  font-style: normal;
}
.scenarios {
  max-width: none;
  background: #f6f8fb;
  padding-left: max(20px, calc((100vw - 1140px) / 2));
  padding-right: max(20px, calc((100vw - 1140px) / 2));
}
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.scenario-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  transition:
    0.2s transform,
    0.2s box-shadow;
}
.scenario-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.scenario-grid article > span {
  font-size: 12px;
  color: var(--blue);
  font-weight: 800;
}
.scenario-grid h3 {
  font-size: 24px;
  margin: 45px 0 12px;
}
.scenario-grid p {
  color: var(--muted);
  line-height: 1.7;
  min-height: 82px;
}
.scenario-grid b {
  font-size: 13px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.price-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  position: relative;
  background: #fff;
}

.billing-switch {
  display: flex;
  width: max-content;
  margin: 0 auto 28px;
  padding: 5px;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f4f6fa;
}

.billing-switch button {
  border: 0;
  border-radius: 10px;
  padding: 10px 18px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.billing-switch button.active {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 4px 16px rgba(39, 66, 128, 0.12);
}

.billing-switch small {
  margin-left: 6px;
  padding: 2px 5px;
  border-radius: 8px;
  background: #e8edff;
  color: var(--blue);
  font-size: 10px;
}
.price-card.recommended {
  border: 2px solid var(--blue);
  box-shadow: 0 18px 40px rgba(49, 87, 255, 0.12);
}
.recommended-label {
  position: absolute;
  right: 16px;
  top: 16px;
  background: #edf1ff;
  color: var(--blue);
  padding: 5px 8px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
}
.price-card h3 {
  font-size: 22px;
  margin: 4px 0;
}
.price-card > p {
  color: var(--muted);
  font-size: 13px;
  height: 40px;
}
.price {
  display: flex;
  align-items: baseline;
  margin: 25px 0;
}
.price strong {
  font-size: 38px;
  letter-spacing: -2px;
}
.price span {
  color: var(--muted);
  font-size: 12px;
  margin-left: 4px;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  min-height: 155px;
}
.price-card li {
  font-size: 13px;
  margin: 12px 0;
  color: #475467;
}
.price-card li.included:before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 8px;
}
.price-card li.excluded {
  color: #98a2b3;
}
.price-card li.excluded:before {
  content: "×";
  color: #98a2b3;
  font-weight: 800;
  margin-right: 8px;
}
.price-card .button {
  width: 100%;
}
.download-section {
  padding-top: 50px;
}
.download-panel {
  background: linear-gradient(125deg, #0a1729, #153555);
  border-radius: 26px;
  padding: 54px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 50px;
  overflow: hidden;
  position: relative;
}
.download-panel:after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(14, 197, 212, 0.12);
  right: -120px;
  top: -140px;
}
.download-panel > div {
  position: relative;
  z-index: 1;
}
.download-panel p {
  color: #b6c4d4;
  line-height: 1.7;
}
.download-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
}
.light-button {
  background: #fff;
  color: #11223a;
  box-shadow: none;
}
.light-button:hover {
  background: #e8fcfd;
  color: #11223a;
}
.download-link {
  color: #a9e9ee;
  font-size: 13px;
}
.download-details {
  display: grid;
  gap: 10px;
}
.download-details article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  border-radius: 12px;
  display: grid;
  gap: 5px;
}
.download-details span,
.download-details small {
  font-size: 10px;
  color: #9eb0c3;
}
.download-details a {
  color: #7be8ef;
  font-size: 11px;
  margin-top: 6px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
}
.faq details p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}
.final-cta {
  margin: 40px auto 100px;
  max-width: 1140px;
  padding: 75px 40px;
  text-align: center;
  background: var(--blue);
  color: #fff;
  border-radius: 28px;
}
.final-cta p {
  color: #dce3ff;
  font-size: 17px;
}
.final-cta .button {
  margin-top: 14px;
}
.site-footer {
  border-top: 1px solid var(--line);
  max-width: 1180px;
  margin: auto;
  padding: 55px 20px 25px;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 35px;
  color: #667085;
}
.site-footer > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}
.site-footer > div:first-child p {
  max-width: 280px;
  line-height: 1.6;
}
.site-footer strong {
  color: var(--ink);
  margin-bottom: 8px;
}
.site-footer a:hover {
  color: var(--blue);
}
.site-footer > small {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.page-view {
  min-height: calc(100vh - 76px);
}
.auth-view {
  background: #f1f4f8;
  padding: 60px 20px;
}
.auth-shell {
  max-width: 980px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 620px;
}
.auth-intro {
  background: var(--navy);
  color: #fff;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.brand.inverse .brand-logo {
  width: 190px;
}
.auth-intro h1 {
  font-size: 48px;
  letter-spacing: -2px;
  margin: 12px 0;
}
.auth-intro p {
  color: #aab8c9;
  line-height: 1.7;
}
.auth-intro ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.auth-intro li {
  margin: 12px 0;
  color: #c7d2df;
  font-size: 13px;
}
.auth-intro li:before {
  content: "✓";
  color: var(--green);
  margin-right: 8px;
}
.auth-card {
  background: #fff;
  padding: 48px;
}
.back-link {
  font-size: 13px;
  color: var(--muted);
}
.auth-card h2 {
  font-size: 30px;
  margin: 45px 0 7px;
}
.auth-card > div > p {
  color: var(--muted);
  font-size: 14px;
}
.auth-card form,
.order-card form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.auth-card label,
.order-card label {
  font-size: 13px;
  font-weight: 700;
  display: grid;
  gap: 7px;
}
.auth-card input,
.order-card select {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 9px;
  padding: 12px 13px;
  outline: none;
  background: #fff;
}
.auth-card input:focus,
.order-card select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(49, 87, 255, 0.1);
}
.auth-card label small {
  font-weight: 400;
  color: #98a2b3;
}
.checkbox {
  grid-template-columns: auto 1fr !important;
  align-items: start;
}
.checkbox input {
  width: auto;
  margin-top: 3px;
}
.checkbox span {
  font-weight: 400;
  color: #667085;
}
.checkbox a,
.auth-switch a {
  color: var(--blue);
  font-weight: 700;
}
.auth-switch {
  text-align: center;
  margin-top: 22px !important;
}
.account-view {
  background: #f5f7fa;
  padding: 55px 20px 90px;
}
.account-shell {
  max-width: 1120px;
  margin: auto;
}
.account-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.account-head h1 {
  font-size: 42px;
  margin: 4px 0;
}
.account-head p {
  color: var(--muted);
}
.account-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
}
.account-card,
.orders-panel,
.account-notice {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
}
.card-label {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #98a2b3;
  font-size: 10px;
  font-weight: 800;
}
.license-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 17px 0 5px;
}
.license-title strong {
  font-size: 28px;
}
.status-chip {
  font-size: 10px;
  padding: 5px 8px;
  border-radius: 20px;
  background: #ecfdf3;
  color: #087a55;
  font-weight: 800;
}
.license-card > p,
.order-card > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.allowance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin: 25px 0;
}
.allowance div {
  background: var(--soft);
  padding: 12px 8px;
  border-radius: 9px;
}
.allowance span {
  display: block;
  color: #98a2b3;
  font-size: 9px;
}
.allowance strong {
  font-size: 15px;
}
.account-card dl {
  margin: 18px 0 0;
}
.account-card dl div {
  padding: 11px 0;
  border-bottom: 1px solid #eef0f3;
}
.account-card dt {
  color: #98a2b3;
  font-size: 10px;
}
.account-card dd {
  margin: 4px 0 0;
  font-size: 13px;
  word-break: break-all;
}
.order-card h2 {
  font-size: 22px;
  margin: 15px 0 0;
}
.orders-panel {
  margin-top: 14px;
}
.orders-panel h2 {
  margin: 7px 0 22px;
}
.table-wrap {
  overflow: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
th,
td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid #eef0f3;
  font-size: 12px;
}
th {
  color: #98a2b3;
  font-size: 10px;
  text-transform: uppercase;
}
.empty-row td {
  text-align: center;
  color: #98a2b3;
  padding: 35px;
}
.account-notice {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: #eef2ff;
  border-color: #d8e0ff;
}
.account-notice p {
  margin: 0;
  color: #53617a;
  font-size: 13px;
  flex: 1;
}
.account-notice a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}
.account-head-actions {
  display: flex;
  gap: 10px;
}
.account-nav {
  position: sticky;
  top: 76px;
  z-index: 8;
  display: flex;
  gap: 8px;
  margin: -12px 0 18px;
  padding: 8px;
  overflow-x: auto;
  border: 1px solid #e2e8f3;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(18, 38, 71, 0.06);
  backdrop-filter: blur(14px);
}
.account-nav a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border-radius: 9px;
  color: #53617a;
  font-size: 12px;
  font-weight: 750;
}
.account-nav a:hover {
  color: var(--blue);
  background: #eef3ff;
}
.account-nav a[aria-current="page"] {
  color: #fff;
  background: linear-gradient(135deg, #3157ff, #367ff5);
  box-shadow: 0 8px 18px rgba(49, 87, 255, 0.2);
}
.account-section-hidden {
  display: none !important;
}
.account-dashboard {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
  scroll-margin-top: 140px;
}
.account-plan-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 30px;
  min-height: 160px;
  padding: 30px 34px;
  overflow: hidden;
  position: relative;
  color: #fff;
  border-radius: 20px;
  background:
    radial-gradient(circle at 86% 20%, rgba(87, 127, 255, 0.52), transparent 28%),
    linear-gradient(125deg, #07172a 0%, #102b57 56%, #1f58df 100%);
  box-shadow: 0 22px 55px rgba(16, 43, 87, 0.18);
}
.account-plan-hero:after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -110px;
  bottom: -210px;
  border: 38px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.light-label { color: #91aee1; }
.account-plan-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 7px;
}
.account-plan-title strong {
  font-size: 30px;
  letter-spacing: -1px;
}
.account-plan-hero p {
  max-width: 590px;
  margin: 0;
  color: #aebed4;
  font-size: 13px;
  line-height: 1.6;
}
.account-plan-days {
  min-width: 120px;
  padding-left: 27px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.account-plan-days span,
.account-plan-days small {
  display: block;
  color: #9fb4d1;
  font-size: 10px;
}
.account-plan-days strong {
  display: block;
  margin: 4px 0;
  font-size: 27px;
}
.account-plan-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}
.button.white {
  color: #1846be;
  background: #fff;
  border-color: #fff;
}
.button.outline-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.28);
}
.account-usage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.account-usage-grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13px;
  position: relative;
  padding: 20px 20px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.usage-icon {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  color: #3157bb;
  border-radius: 11px;
  background: #edf2ff;
  font-size: 13px;
  font-weight: 900;
}
.usage-icon.members { color: #6e42b8; background: #f3edff; }
.usage-icon.clients { color: #087a55; background: #e9fbf4; }
.usage-copy > span { color: #667085; font-size: 11px; }
.usage-copy strong { display: block; margin: 3px 0; font-size: 22px; }
.usage-copy strong b { font-size: inherit; }
.usage-copy strong small { color: #98a2b3; font-size: 11px; font-weight: 600; }
.usage-copy p { margin: 0; color: #98a2b3; font-size: 10px; line-height: 1.45; }
.usage-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: #edf1f7;
}
.usage-progress i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(90deg, #3157ff, #4f91ff);
  transition: width 600ms ease;
}
.usage-progress.warning i { background: linear-gradient(90deg, #f59e0b, #ef5b5b); }
.account-detail-grid { grid-template-columns: 1.18fr .82fr 1fr; }
.subscription-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}
.profile-card dl { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.profile-card dl div:nth-child(1),
.profile-card dl div:nth-child(2),
.profile-card dl div:nth-child(7) { grid-column: 1 / -1; }
.account-entitlements-panel {
  margin-top: 22px;
  padding: 26px;
  scroll-margin-top: 140px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.panel-heading,
.orders-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.panel-heading h2,
.orders-panel-head h2 { margin: 7px 0 4px; }
.panel-heading p,
.orders-panel-head p { margin: 0; color: var(--muted); font-size: 12px; }
.entitlement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}
.entitlement-grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 14px 16px;
  border: 1px solid #e3e9f3;
  border-radius: 13px;
  background: #fbfcff;
}
.entitlement-grid article.enabled { border-color: #c9d8ff; background: #f5f8ff; }
.entitlement-grid article.disabled { opacity: .72; }
.entitlement-icon {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border-radius: 10px;
  color: #697386;
  background: #eef1f6;
  font-weight: 900;
}
.entitlement-grid .enabled .entitlement-icon { color: #3157d9; background: #e3ebff; }
.entitlement-grid strong,
.entitlement-grid p { display: block; }
.entitlement-grid p { margin: 3px 0 0; color: #7b879a; font-size: 11px; }
.entitlement-grid b { color: #8b96a8; font-size: 10px; white-space: nowrap; }
.entitlement-grid .enabled b { color: #087a55; }
.account-orders-panel { scroll-margin-top: 140px; }
.order-summary { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.order-summary span {
  min-width: 72px;
  padding: 9px 11px;
  color: #98a2b3;
  border-radius: 10px;
  background: #f6f8fc;
  font-size: 9px;
}
.order-summary strong { display: block; margin-top: 3px; color: var(--ink); font-size: 13px; }
.account-notice .notice-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  border-radius: 11px;
  background: linear-gradient(145deg, #3157ff, #1641b5);
  font-size: 12px;
  font-weight: 900;
}
#teamManagement,
#accountOperations { scroll-margin-top: 140px; }
.legal-view {
  background: #f7f8fa;
  padding: 70px 20px;
}
.legal-view article {
  max-width: 780px;
  margin: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 55px;
}
.legal-view h1 {
  font-size: 43px;
  letter-spacing: -1.5px;
}
.legal-view h2 {
  font-size: 20px;
  margin-top: 35px;
}
.legal-view p {
  color: #5b6678;
  line-height: 1.85;
}
.legal-date {
  font-size: 12px;
}
.toast {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  max-width: 390px;
  background: #10243d;
  color: #fff;
  border-radius: 12px;
  padding: 15px 18px;
  box-shadow: var(--shadow);
  font-size: 13px;
}
.toast.error {
  background: #a93636;
}
@media (max-width: 980px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 18px 24px;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav.open {
    display: flex;
  }
  .menu-button {
    display: block;
    margin-left: auto;
  }
  .header-actions {
    margin-left: 0;
  }
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 65px;
  }
  .product-frame {
    min-width: 700px;
    transform: none;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-card.large {
    grid-column: auto;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .account-grid {
    grid-template-columns: 1fr 1fr;
  }
  .account-plan-hero {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .account-plan-actions {
    grid-column: 1 / -1;
    display: flex;
  }
  .order-card {
    grid-column: span 2;
  }
  .download-panel {
    grid-template-columns: 1fr;
  }
  .scenario-grid {
    grid-template-columns: 1fr;
  }
  .scenario-grid p {
    min-height: 0;
  }
}
@media (max-width: 680px) {
  .site-header {
    padding: 0 16px;
    gap: 12px;
  }
  .header-actions .text-link {
    display: none;
  }
  .hero {
    padding: 48px 20px;
  }
  .hero h1 {
    letter-spacing: -2.7px;
  }
  .hero-actions,
  .download-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .product-frame {
    width: 100%;
    min-width: 0;
    transform: none;
    margin-bottom: 0;
  }
  .product-body {
    height: 350px;
    grid-template-columns: 94px minmax(0, 1fr);
  }
  .product-body aside {
    padding: 12px 7px;
  }
  .product-body aside a {
    padding: 7px 5px;
    font-size: 8px;
  }
  .aside-title {
    padding-left: 5px;
  }
  .workspace {
    padding: 10px;
  }
  .workspace-top strong {
    font-size: 14px;
  }
  .fake-actions {
    display: none;
  }
  .metric-row {
    gap: 5px;
    margin: 10px 0;
  }
  .metric-row article {
    padding: 8px 5px;
  }
  .metric-row strong {
    font-size: 17px;
  }
  .screen-grid {
    gap: 5px;
  }
  .screen {
    height: 67px;
  }
  .screen-grid footer {
    padding: 6px;
    font-size: 7px;
  }
  .proof-strip {
    justify-content: flex-start;
    padding-left: 20px;
  }
  .section {
    padding: 75px 16px;
  }
  .section-heading {
    display: block;
  }
  .feature-card {
    padding: 26px;
    min-height: auto;
  }
  .feature-card h3 {
    margin-top: 28px;
  }
  .mini-table,
  .privacy-line {
    position: static;
    width: 100%;
    margin-top: 25px;
  }
  .privacy-line {
    flex-wrap: wrap;
  }
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .price-card ul {
    min-height: auto;
  }
  .download-panel {
    padding: 34px 24px;
  }
  .final-cta {
    margin: 20px 16px 70px;
    padding: 55px 22px;
  }
  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding: 40px 20px;
  }
  .site-footer > div:first-child,
  .site-footer > small {
    grid-column: 1/-1;
  }
  .auth-view {
    padding: 25px 12px;
  }
  .auth-shell {
    grid-template-columns: 1fr;
  }
  .auth-intro {
    min-height: 320px;
    padding: 32px;
  }
  .auth-intro h1 {
    font-size: 38px;
  }
  .auth-card {
    padding: 32px 25px;
  }
  .account-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .account-head-actions { width: 100%; }
  .account-head-actions .button { flex: 1; }
  .account-head h1 {
    font-size: 34px;
  }
  .account-nav { top: 68px; }
  .account-plan-hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 27px 24px;
  }
  .account-plan-days {
    padding: 16px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }
  .account-plan-actions {
    grid-column: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .account-usage-grid,
  .entitlement-grid {
    grid-template-columns: 1fr;
  }
  .account-grid {
    grid-template-columns: 1fr;
  }
  .order-card {
    grid-column: auto;
  }
  .account-notice {
    align-items: flex-start;
    flex-direction: column;
  }
  .panel-heading,
  .orders-panel-head { display: grid; }
  .order-summary { justify-content: flex-start; }
  .profile-card dl,
  .subscription-detail { grid-template-columns: 1fr; }
  .profile-card dl div { grid-column: auto !important; }
  .legal-view {
    padding: 25px 12px;
  }
  .legal-view article {
    padding: 35px 24px;
  }
  .legal-view h1 {
    font-size: 34px;
  }
}

/* Dedicated product pages */
.main-nav a {
  position: relative;
  padding: 27px 0 25px;
}
.main-nav a:after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 17px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transition: left 0.25s ease, right 0.25s ease;
}
.main-nav a:hover:after,
.main-nav a.active:after {
  left: 0;
  right: 0;
}
.main-nav a.active {
  color: var(--blue);
}
.section-link,
.inline-link {
  color: var(--blue);
  font-weight: 750;
}
.section-heading .section-link {
  display: block;
  margin-top: 10px;
}
.product-page {
  min-height: calc(100vh - 76px);
  background:
    radial-gradient(circle at 12% 8%, rgba(49, 87, 255, 0.055), transparent 28%),
    #fff;
  animation: page-enter 0.45s ease both;
}
.page-hero {
  max-width: 1240px;
  min-height: 620px;
  margin: auto;
  padding: 92px 50px 78px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: 78px;
  align-items: center;
  overflow: hidden;
}
.page-hero-copy h1 {
  margin: 18px 0 24px;
  font-size: clamp(48px, 5.3vw, 76px);
  line-height: 1.06;
  letter-spacing: -4px;
}
.page-hero-copy h1 em {
  color: var(--blue);
  font-style: normal;
}
.page-hero-copy > p {
  max-width: 610px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 2px;
}
.eyebrow:before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}
.eyebrow.light {
  color: #6feaf2;
}
.page-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}
.page-proof {
  max-width: 1140px;
  margin: -22px auto 80px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.page-proof article {
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-right: 0;
  background: rgba(255, 255, 255, 0.94);
}
.page-proof article:first-child {
  border-radius: 16px 0 0 16px;
}
.page-proof article:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 16px 16px 0;
}
.page-proof strong,
.page-proof span {
  display: block;
}
.page-proof strong {
  font-size: 25px;
  color: var(--navy2);
}
.page-proof span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}
.capability-orbit {
  height: 500px;
  position: relative;
  display: grid;
  place-items: center;
}
.orbit-core {
  width: 152px;
  height: 152px;
  border-radius: 42px;
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(145deg, #3157ff, #162d9d);
  box-shadow: 0 30px 70px rgba(49, 87, 255, 0.34);
  position: relative;
  z-index: 3;
  animation: core-float 4s ease-in-out infinite;
}
.orbit-core:after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
}
.orbit-core span {
  font-size: 48px;
  font-weight: 900;
  line-height: 0.9;
}
.orbit-core b {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 3px;
}
.orbit-ring {
  position: absolute;
  border: 1px solid rgba(49, 87, 255, 0.16);
  border-radius: 50%;
}
.ring-one {
  width: 330px;
  height: 330px;
  animation: orbit-spin 22s linear infinite;
}
.ring-two {
  width: 470px;
  height: 470px;
  border-style: dashed;
  animation: orbit-spin 34s linear reverse infinite;
}
.orbit-ring:before,
.orbit-ring:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(14, 197, 212, 0.12);
}
.orbit-ring:before {
  left: 13%;
  top: 13%;
}
.orbit-ring:after {
  right: 3%;
  bottom: 30%;
  background: var(--blue);
}
.orbit-card {
  position: absolute;
  z-index: 4;
  width: 190px;
  padding: 17px 18px;
  border: 1px solid #dfe5ef;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(28, 45, 78, 0.13);
  animation: card-drift 5s ease-in-out infinite;
}
.orbit-card i {
  float: right;
  color: #a9b8cc;
  font-size: 10px;
  font-style: normal;
}
.orbit-card strong,
.orbit-card small {
  display: block;
}
.orbit-card strong {
  font-size: 14px;
}
.orbit-card small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
}
.orbit-one {
  left: 5px;
  top: 66px;
}
.orbit-two {
  right: 0;
  top: 128px;
  animation-delay: -1.5s;
}
.orbit-three {
  left: 50px;
  bottom: 35px;
  animation-delay: -3s;
}
.detail-section,
.scenario-detail-section {
  max-width: 1160px;
  margin: auto;
  padding: 55px 20px 90px;
}
.feature-story,
.scenario-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(450px, 1.08fr);
  gap: 85px;
  align-items: center;
  padding: 85px 0;
  border-top: 1px solid #edf0f4;
}
.feature-story.reverse .story-copy,
.scenario-detail.reverse .scenario-copy {
  order: 2;
}
.feature-story.reverse .visual-panel,
.scenario-detail.reverse .scenario-illustration {
  order: 1;
}
.story-index {
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 2px;
}
.story-copy h2,
.scenario-copy h2 {
  margin: 13px 0 18px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -2px;
}
.story-copy > p,
.scenario-copy > p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 15px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0;
}
.check-list li {
  position: relative;
  margin: 13px 0;
  padding-left: 27px;
  color: #475467;
  font-size: 13px;
  line-height: 1.55;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e9fbf4;
  color: #0e9f6e;
  font-size: 10px;
  font-weight: 900;
}
.visual-panel {
  min-height: 390px;
  border: 1px solid #dfe5ed;
  border-radius: 22px;
  background: #f2f5f9;
  box-shadow: 0 28px 70px rgba(21, 39, 68, 0.13);
  overflow: hidden;
}
.asset-demo {
  padding: 25px;
  display: grid;
  align-content: start;
  gap: 10px;
}
.visual-toolbar,
.visual-footer,
.wall-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.visual-toolbar {
  margin-bottom: 12px;
}
.visual-toolbar b {
  font-size: 18px;
}
.visual-toolbar span {
  width: 150px;
  padding: 9px 11px;
  color: #98a2b3;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 9px;
}
.asset-demo-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border: 1px solid #e5e9f0;
  border-radius: 11px;
  background: #fff;
  transition: 0.2s transform, 0.2s border-color;
}
.asset-demo-row:hover {
  transform: translateX(4px);
  border-color: #b7c5ff;
}
.asset-demo-row.active {
  border-color: #9eb1ff;
  box-shadow: 0 5px 18px rgba(49, 87, 255, 0.09);
}
.asset-demo-row strong,
.asset-demo-row small {
  grid-column: 2;
}
.asset-demo-row strong {
  font-size: 12px;
}
.asset-demo-row small {
  margin-top: -7px;
  color: #98a2b3;
  font-size: 9px;
}
.asset-demo-row em {
  grid-column: 3;
  grid-row: 1 / 3;
  color: #139a6b;
  font-size: 9px;
  font-style: normal;
}
.visual-footer {
  margin-top: 13px;
  color: var(--muted);
  font-size: 10px;
}
.visual-footer b {
  padding: 9px 12px;
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
}
.wall-demo {
  padding: 20px;
  position: relative;
  background: #0d192a;
}
.wall-head {
  color: #fff;
  font-size: 11px;
  margin-bottom: 15px;
}
.wall-head b {
  color: #8ca0b8;
  font-size: 9px;
}
.wall-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.wall-screen {
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(145deg, #8ec8e8, #d9edf9);
}
.wall-screen:before {
  content: "";
  position: absolute;
  inset: 25% -10% -30%;
  transform: rotate(-12deg);
  background: rgba(255, 255, 255, 0.52);
}
.wall-screen.violet { background: linear-gradient(145deg, #8d9fee, #d9deff); }
.wall-screen.night { background: linear-gradient(145deg, #324a67, #96a9bc); }
.wall-screen.amber { background: linear-gradient(145deg, #e6ad65, #ffe0a7); }
.wall-screen span {
  position: absolute;
  left: 9px;
  top: 9px;
  z-index: 2;
  padding: 4px 6px;
  border-radius: 5px;
  background: rgba(8, 19, 33, 0.68);
  color: #fff;
  font-size: 8px;
  font-style: normal;
}
.scan-line {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 54px;
  height: 1px;
  opacity: 0.7;
  background: linear-gradient(90deg, transparent, #55edf7, transparent);
  animation: scan-wall 4s ease-in-out infinite;
}
.task-flow {
  padding: 52px 45px;
  display: grid;
  align-content: center;
}
.task-flow-step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 17px;
  border-radius: 12px;
  border: 1px solid #e1e6ed;
  background: #fff;
}
.task-flow-step > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef2f7;
  color: #637083;
  font-size: 11px;
  font-weight: 850;
}
.task-flow-step strong,
.task-flow-step small {
  display: block;
}
.task-flow-step strong { font-size: 13px; }
.task-flow-step small { margin-top: 4px; color: #98a2b3; font-size: 9px; }
.task-flow-step > b { color: #98a2b3; font-size: 9px; }
.task-flow-step.done > span { background: #e9fbf4; color: #0e9f6e; }
.task-flow-step.done > b { color: #0e9f6e; }
.task-flow-step.running {
  border-color: #9eb1ff;
  box-shadow: 0 8px 24px rgba(49, 87, 255, 0.1);
}
.task-flow-step.running > span {
  background: var(--blue);
  color: #fff;
  animation: status-pulse 1.8s ease-in-out infinite;
}
.task-flow-step.running > b { color: var(--blue); }
.task-flow-line {
  width: 1px;
  height: 24px;
  margin-left: 34px;
  background: #cdd5df;
}
.security-band {
  max-width: 1140px;
  margin: 10px auto 100px;
  padding: 58px;
  border-radius: 26px;
  background: linear-gradient(125deg, #091729, #133451);
  color: #fff;
}
.security-band h2 {
  margin: 13px 0;
  font-size: 38px;
}
.security-band p {
  max-width: 760px;
  color: #afbdce;
  line-height: 1.75;
}
.security-path {
  margin-top: 35px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
}
.security-path span,
.security-path b {
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 11px;
}
.security-path b {
  color: #75e7ee;
  border-color: rgba(117, 231, 238, 0.3);
}
.security-path i {
  position: relative;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  color: #92a5bc;
  text-align: center;
  font-size: 8px;
  font-style: normal;
}
.security-path i:after {
  content: "›";
  position: absolute;
  right: -1px;
  top: -8px;
  font-size: 16px;
}
.page-cta {
  max-width: 1140px;
  margin: 30px auto 105px;
  padding: 62px 35px;
  border-radius: 26px;
  background: linear-gradient(135deg, #eef2ff, #f3fdfe);
  border: 1px solid #dce3f5;
  text-align: center;
}
.page-cta h2 {
  margin: 0;
  font-size: 38px;
  letter-spacing: -1.5px;
}
.page-cta p {
  color: var(--muted);
  line-height: 1.7;
}
.page-cta > div {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

/* Scenarios */
.scenario-page-hero {
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.82fr);
}
.scenario-stack {
  display: grid;
  gap: 12px;
  position: relative;
}
.scenario-stack:before {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  right: 15%;
  top: 5%;
  border-radius: 50%;
  background: rgba(14, 197, 212, 0.1);
  filter: blur(2px);
  animation: core-float 6s ease-in-out infinite;
}
.scenario-stack article {
  z-index: 1;
  min-height: 108px;
  padding: 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid #dfe5ed;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(22, 40, 69, 0.1);
  transition: 0.25s transform, 0.25s border-color;
}
.scenario-stack article:nth-child(2) { transform: translateX(28px); }
.scenario-stack article:hover { transform: translateX(-6px); border-color: #a7b7ff; }
.scenario-stack article:nth-child(2):hover { transform: translateX(22px); }
.scenario-stack article > span {
  font-size: 11px;
  font-weight: 850;
  color: var(--blue);
}
.scenario-stack small,
.scenario-stack strong {
  display: block;
}
.scenario-stack small { color: #98a2b3; font-size: 10px; }
.scenario-stack strong { margin-top: 5px; font-size: 16px; }
.scenario-stack article > b {
  padding: 7px 9px;
  border-radius: 20px;
  background: #edf1ff;
  color: #3450bd;
  font-size: 9px;
}
.scenario-detail-section { padding-top: 0; }
.scenario-detail {
  grid-template-columns: 60px minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 45px;
}
.scenario-detail.reverse .scenario-number { order: 3; }
.scenario-number {
  align-self: start;
  color: #d5dce6;
  font-size: 52px;
  font-weight: 900;
  writing-mode: vertical-rl;
}
.scenario-needs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 22px 0;
}
.scenario-needs span,
.scenario-needs b {
  padding: 7px 9px;
  border-radius: 7px;
  font-size: 9px;
}
.scenario-needs span { background: var(--navy); color: #fff; }
.scenario-needs b { background: #f1f3f7; color: #617084; }
.scenario-illustration {
  min-height: 390px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #ecf1ff, #f7fbff);
  border: 1px solid #dee5f2;
}
.personal-illustration i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 230px;
  height: 230px;
  border: 1px dashed #9eb1d3;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbit-spin 24s linear infinite;
}
.device,
.person,
.monitor-node {
  position: absolute;
  padding: 12px 15px;
  border: 1px solid #dce3ec;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(28, 45, 78, 0.12);
  font-size: 10px;
  font-weight: 750;
}
.home-device {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 24px 22px;
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.cloud-one { left: 28px; top: 45px; }
.cloud-two { right: 25px; top: 75px; }
.cloud-three { right: 55px; bottom: 38px; }
.datacenter-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  background: linear-gradient(145deg, #0b1728, #173653);
}
.rack {
  width: 92px;
  height: 235px;
  padding: 18px 13px;
  display: grid;
  gap: 9px;
  border: 1px solid #38506b;
  border-radius: 9px;
  background: #10243a;
}
.rack i {
  position: relative;
  border: 1px solid #3b526c;
  border-radius: 4px;
  background: #182f48;
}
.rack i:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  right: 8px;
  top: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px var(--green);
  animation: status-pulse 2s ease-in-out infinite;
}
.monitor-node {
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  color: #d9eff2;
  background: rgba(14, 197, 212, 0.15);
  border-color: rgba(14, 197, 212, 0.35);
}
.team-illustration { background: #f8f9fc; }
.team-illustration:before,
.team-illustration:after {
  content: "";
  position: absolute;
  width: 270px;
  height: 1px;
  left: 50%;
  top: 50%;
  background: #cbd5e3;
  transform: translate(-50%, -50%) rotate(30deg);
}
.team-illustration:after { transform: translate(-50%, -50%) rotate(-30deg); }
.team-hub {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 28px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 22px 45px rgba(49, 87, 255, 0.3);
}
.person { z-index: 2; }
.p1 { left: 30px; top: 45px; }
.p2 { right: 25px; top: 55px; }
.p3 { left: 45px; bottom: 45px; }
.p4 { right: 40px; bottom: 50px; }
.workflow-section,
.role-section,
.install-steps-section,
.comparison-section {
  max-width: 1140px;
  margin: auto;
  padding: 80px 20px 100px;
}
.workflow-grid,
.install-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 35px;
}
.workflow-grid article,
.install-steps article {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
  transition: 0.25s transform, 0.25s box-shadow;
}
.workflow-grid article:hover,
.install-steps article:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(21, 39, 68, 0.1);
}
.workflow-grid article:after {
  content: "→";
  position: absolute;
  right: -11px;
  top: 28px;
  z-index: 2;
  color: var(--blue);
  font-weight: 900;
}
.workflow-grid article:last-child:after { display: none; }
.workflow-grid span,
.install-steps span { color: var(--blue); font-size: 10px; font-weight: 850; }
.workflow-grid h3,
.install-steps h3 { margin: 22px 0 8px; font-size: 17px; }
.workflow-grid p,
.install-steps p { color: var(--muted); font-size: 12px; line-height: 1.65; }

/* Pricing */
.compact-page-hero {
  min-height: 500px;
  grid-template-columns: minmax(0, 1fr) 390px;
}
.pricing-note-card {
  padding: 32px;
  border: 1px solid #dfe5ee;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(21, 39, 68, 0.12);
}
.pricing-note-card > span { color: #98a2b3; font-size: 10px; letter-spacing: 1px; }
.pricing-note-card strong { display: block; margin: 12px 0; font-size: 24px; }
.pricing-note-card p { color: var(--muted); font-size: 12px; line-height: 1.7; }
.pricing-note-card i {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 7px 10px;
  border-radius: 20px;
  background: #ecfdf3;
  color: #087a55;
  font-size: 10px;
  font-style: normal;
  font-weight: 750;
}
.pricing-note-card i b {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: status-pulse 2s ease-in-out infinite;
}
.pricing-page-section { padding-top: 20px; }
.comparison-section { padding-top: 30px; }
.comparison-wrap { overflow-x: auto; margin-top: 35px; border: 1px solid var(--line); border-radius: 18px; }
.comparison-table { min-width: 850px; background: #fff; }
.comparison-table th,
.comparison-table td { padding: 17px 18px; text-align: center; font-size: 12px; }
.comparison-table th:first-child,
.comparison-table td:first-child { text-align: left; }
.comparison-table thead th { padding-top: 22px; padding-bottom: 22px; color: var(--ink); font-size: 12px; }
.comparison-table .highlight { background: #f3f5ff; color: #263fa6; }
.pricing-faq { padding-top: 30px; }

/* Download */
.download-page-hero {
  min-height: 610px;
  padding: 90px max(40px, calc((100vw - 1140px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 100px;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(125deg, #071425, #123451);
}
.download-page-hero:before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -170px;
  top: -220px;
  border-radius: 50%;
  border: 90px solid rgba(14, 197, 212, 0.08);
}
.download-page-copy { position: relative; z-index: 2; }
.download-page-copy h1 {
  margin: 18px 0 22px;
  font-size: clamp(52px, 6vw, 78px);
  line-height: 1.03;
  letter-spacing: -4px;
}
.download-page-copy > p {
  max-width: 680px;
  color: #b6c4d4;
  font-size: 16px;
  line-height: 1.8;
}
.download-page-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.download-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.download-meta span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  color: #a9b9cb;
  font-size: 9px;
}
.download-package {
  width: 310px;
  height: 360px;
  position: relative;
  z-index: 2;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(15px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.28);
  transform: perspective(800px) rotateY(-8deg) rotateX(2deg);
  animation: package-float 5s ease-in-out infinite;
}
.package-top span,
.package-top b,
.package-top small { display: block; }
.package-top span { color: #6feaf2; font-size: 68px; line-height: 0.9; font-weight: 900; }
.package-top b { font-size: 26px; letter-spacing: 3px; }
.package-top small { margin-top: 8px; color: #8fa4bb; font-size: 9px; letter-spacing: 2px; }
.package-lines { display: grid; gap: 7px; margin-top: 45px; }
.package-lines i { width: 70%; height: 5px; border-radius: 5px; background: rgba(255, 255, 255, 0.15); }
.package-lines i:nth-child(2) { width: 50%; }
.package-lines i:nth-child(3) { width: 35%; background: rgba(14, 197, 212, 0.5); }
.package-badge { position: absolute; right: 24px; bottom: 24px; padding: 8px 10px; border-radius: 20px; background: #fff; color: #142843; font-size: 10px; font-weight: 800; }
.role-section { padding-top: 100px; }
.role-explorer {
  margin-top: 35px;
  border: 1px solid #dfe5ee;
  border-radius: 22px;
  background: #f6f8fb;
  overflow: hidden;
}
.role-tabs { display: grid; grid-template-columns: repeat(2, 1fr); padding: 8px; gap: 8px; background: #e9edf3; }
.role-tabs button {
  border: 0;
  padding: 16px;
  border-radius: 12px;
  background: transparent;
  color: #667085;
  cursor: pointer;
  font-weight: 750;
  transition: 0.22s background, 0.22s color, 0.22s box-shadow;
}
.role-tabs button.active { background: #fff; color: var(--blue); box-shadow: 0 8px 24px rgba(21, 39, 68, 0.09); }
.role-content { min-height: 430px; }
.role-panel { display: none; grid-template-columns: 1fr 1fr; gap: 55px; align-items: center; padding: 55px; animation: panel-enter 0.35s ease both; }
.role-panel.active { display: grid; }
.role-panel > div:first-child > span { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: 1px; }
.role-panel h3 { margin: 10px 0 13px; font-size: 31px; }
.role-panel p { color: var(--muted); font-size: 13px; line-height: 1.75; }
.role-map {
  min-height: 290px;
  position: relative;
  border: 1px solid #dfe4ec;
  border-radius: 20px;
  background: #fff;
}
.role-map > span { position: absolute; padding: 11px 13px; border: 1px solid #dfe5ed; border-radius: 9px; background: #fff; font-size: 9px; box-shadow: 0 8px 24px rgba(21, 39, 68, 0.1); }
.role-map .role-main { z-index: 2; left: 50%; top: 50%; transform: translate(-50%, -50%); padding: 21px; border-color: var(--blue); background: var(--blue); color: #fff; font-size: 12px; }
.role-map span:nth-of-type(2) { right: 25px; top: 30px; }
.role-map span:nth-of-type(3) { right: 25px; bottom: 30px; }
.role-map span:nth-of-type(4) { left: 25px; bottom: 30px; }
.role-map > i { position: absolute; inset: 55px; border: 1px dashed #aebbd0; border-radius: 50%; animation: orbit-spin 22s linear infinite; }
.agent-map .role-main { background: #0d9e72; border-color: #0d9e72; }
.install-steps-section { padding-top: 35px; }
.install-steps { grid-template-columns: repeat(3, 1fr); }
.compatibility-section {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 48px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 55px;
  border-radius: 22px;
  background: #0b182a;
  color: #fff;
}
.compatibility-section h2 { margin: 12px 0; font-size: 31px; }
.compatibility-section p { color: #aab9ca; font-size: 12px; line-height: 1.7; }
.compatibility-table { display: grid; gap: 8px; }
.compatibility-table div {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
}
.compatibility-table strong { font-size: 11px; }
.compatibility-table span { color: #9eb0c4; font-size: 9px; }
.warning-note {
  max-width: 1100px;
  margin: 0 auto 90px;
  padding: 22px 25px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border: 1px solid #f0dcb8;
  border-radius: 14px;
  background: #fffaf0;
}
.warning-note span { white-space: nowrap; color: #9b6211; font-size: 11px; font-weight: 800; }
.warning-note p { margin: 0; color: #806a4d; font-size: 11px; line-height: 1.7; }

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes page-enter { from { opacity: 0; } to { opacity: 1; } }
@keyframes core-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes card-drift { 0%, 100% { translate: 0 0; } 50% { translate: 0 -8px; } }
@keyframes orbit-spin { to { rotate: 360deg; } }
@keyframes scan-wall { 0%, 100% { translate: 0 0; opacity: 0; } 15% { opacity: 0.8; } 70% { opacity: 0.8; } 85% { translate: 0 290px; opacity: 0; } }
@keyframes status-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(49, 87, 255, 0.25); } 50% { box-shadow: 0 0 0 7px rgba(49, 87, 255, 0); } }
@keyframes package-float { 0%, 100% { transform: perspective(800px) rotateY(-8deg) rotateX(2deg) translateY(0); } 50% { transform: perspective(800px) rotateY(-5deg) rotateX(1deg) translateY(-12px); } }
@keyframes panel-enter { from { opacity: 0; translate: 18px 0; } to { opacity: 1; translate: 0 0; } }

@media (max-width: 980px) {
  .main-nav a { padding: 8px 0; }
  .main-nav a:after { bottom: 1px; }
  .page-hero,
  .scenario-page-hero,
  .compact-page-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 65px;
  }
  .capability-orbit { height: 460px; max-width: 620px; width: 100%; margin: auto; }
  .page-proof { grid-template-columns: repeat(2, 1fr); }
  .page-proof article:nth-child(1) { border-radius: 16px 0 0 0; }
  .page-proof article:nth-child(2) { border-right: 1px solid var(--line); border-radius: 0 16px 0 0; }
  .page-proof article:nth-child(3) { border-radius: 0 0 0 16px; }
  .page-proof article:nth-child(4) { border-radius: 0 0 16px 0; }
  .feature-story,
  .feature-story.reverse,
  .scenario-detail,
  .scenario-detail.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-story.reverse .story-copy,
  .feature-story.reverse .visual-panel,
  .scenario-detail.reverse .scenario-number,
  .scenario-detail.reverse .scenario-copy,
  .scenario-detail.reverse .scenario-illustration { order: initial; }
  .scenario-detail .scenario-number { display: none; }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-grid article:nth-child(2):after { display: none; }
  .download-page-hero { grid-template-columns: 1fr; gap: 55px; padding: 70px 45px; }
  .download-package { margin: auto; }
  .role-panel { grid-template-columns: 1fr; }
  .compatibility-section { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .page-hero { padding: 55px 20px 65px; min-height: auto; }
  .page-hero-copy h1,
  .download-page-copy h1 { font-size: 45px; letter-spacing: -2.5px; }
  .page-hero-copy > p { font-size: 15px; }
  .page-hero-actions,
  .download-page-actions { align-items: flex-start; flex-direction: column; }
  .capability-orbit { height: 390px; scale: 0.82; margin: -20px 0; }
  .orbit-card { width: 165px; }
  .orbit-one { left: -30px; }
  .orbit-two { right: -35px; }
  .orbit-three { left: 5px; }
  .page-proof { grid-template-columns: 1fr; margin-top: 0; }
  .page-proof article { border-right: 1px solid var(--line); border-bottom: 0; border-radius: 0 !important; }
  .page-proof article:first-child { border-radius: 14px 14px 0 0 !important; }
  .page-proof article:last-child { border-bottom: 1px solid var(--line); border-radius: 0 0 14px 14px !important; }
  .detail-section,
  .scenario-detail-section { padding: 20px 16px 65px; }
  .feature-story,
  .scenario-detail { padding: 65px 0; }
  .story-copy h2,
  .scenario-copy h2 { font-size: 34px; letter-spacing: -1.4px; }
  .visual-panel { min-height: 330px; }
  .asset-demo { padding: 16px; }
  .visual-toolbar span { width: 115px; }
  .wall-screen { height: 105px; }
  .task-flow { padding: 30px 18px; }
  .security-band { margin: 0 16px 70px; padding: 35px 24px; }
  .security-band h2 { font-size: 30px; }
  .security-path { grid-template-columns: 1fr; }
  .security-path i { height: 26px; width: 1px; margin: auto; }
  .security-path i:after { right: -5px; top: 13px; rotate: 90deg; }
  .page-cta { margin: 25px 16px 70px; padding: 45px 22px; }
  .page-cta h2 { font-size: 31px; }
  .page-cta > div { align-items: stretch; flex-direction: column; }
  .scenario-stack article:nth-child(2) { transform: none; }
  .scenario-stack article:hover,
  .scenario-stack article:nth-child(2):hover { transform: translateY(-3px); }
  .scenario-stack article > b { display: none; }
  .scenario-illustration { min-height: 320px; }
  .rack { width: 72px; }
  .workflow-section,
  .role-section,
  .install-steps-section,
  .comparison-section { padding: 65px 16px; }
  .workflow-grid,
  .install-steps { grid-template-columns: 1fr; }
  .workflow-grid article:after { display: none; }
  .pricing-page-section { padding: 20px 16px 65px; }
  .download-page-hero { padding: 60px 20px 70px; }
  .download-package { width: 270px; height: 325px; padding: 32px; }
  .role-tabs { grid-template-columns: 1fr; }
  .role-panel { padding: 30px 20px; }
  .role-panel h3 { font-size: 26px; }
  .role-map { min-height: 250px; }
  .compatibility-section { margin: 0 16px 60px; padding: 32px 22px; gap: 30px; }
  .compatibility-table div { grid-template-columns: 1fr; }
  .warning-note { margin: 0 16px 70px; flex-direction: column; gap: 10px; }
}

.account-feature-summary { margin: 16px 0 0; padding: 10px 12px; border: 1px solid #cddcff; border-radius: 10px; background: #f3f6ff; color: #3157bb; font-size: 13px; line-height: 1.55; }

.team-management { margin-top: 22px; }
.team-head { display:flex; align-items:flex-start; justify-content:space-between; gap:24px; }
.team-head h2 { margin:5px 0; }
.team-head p { margin:0; color:var(--muted); }
.team-allowance { display:grid; grid-template-columns:auto auto; gap:5px 12px; min-width:180px; color:var(--muted); font-size:13px; }
.team-allowance strong { color:var(--ink); text-align:right; font-size:15px; }
.team-grid { display:grid; grid-template-columns:1fr 1fr; gap:22px; margin-top:22px; }
.team-grid article { padding:20px; border:1px solid #e2e8f4; border-radius:14px; background:#fbfcff; }
.team-grid h3 { margin:0 0 6px; font-size:17px; }
.team-note,.team-empty { margin:0 0 14px; color:var(--muted); font-size:13px; line-height:1.55; }
.team-list { display:grid; gap:8px; margin-bottom:15px; }
.team-row { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:10px 12px; border-radius:9px; background:#fff; border:1px solid #e6ebf5; }
.team-row strong,.team-row small { display:block; }
.team-row small { margin-top:3px; color:var(--muted); font-size:12px; }
.compact-form { display:flex; gap:10px; align-items:end; margin-top:12px; }
.compact-form label { flex:1; display:grid; gap:6px; font-size:13px; color:var(--muted); }
.compact-form input,.invite-result input { width:100%; box-sizing:border-box; padding:10px 11px; border:1px solid #ccd6e8; border-radius:8px; background:#fff; color:var(--ink); }
.invite-result { display:grid; gap:6px; margin-top:12px; color:var(--muted); font-size:13px; }
.mini.danger { color:#c53e36; border-color:#f0b8b3; background:#fff; }
.account-operations { margin-top:22px; }
.account-ops-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:22px; margin-top:22px; }
.account-ops-grid article,.account-task-panel { padding:20px; border:1px solid #e2e8f4; border-radius:14px; background:#fbfcff; }
.account-ops-grid h3,.account-task-panel h3 { margin:0 0 8px; font-size:17px; }
.stack-form { display:grid; gap:10px; margin-top:14px; }
.stack-form label { display:grid; gap:6px; color:var(--muted); font-size:13px; }
.stack-form input { box-sizing:border-box; width:100%; padding:10px 11px; border:1px solid #ccd6e8; border-radius:8px; background:#fff; color:var(--ink); }
.password-form { margin-top:22px; padding-top:18px; border-top:1px dashed #dce4f2; }
.task-panel-head { display:flex; justify-content:space-between; gap:16px; align-items:flex-start; }
.account-task-table { overflow:auto; margin-top:15px; border:1px solid #e4eaf4; border-radius:10px; background:#fff; }
.account-task-table table { width:100%; min-width:650px; border-collapse:collapse; font-size:12px; }
.account-task-table th,.account-task-table td { padding:11px 12px; text-align:left; border-bottom:1px solid #edf1f6; white-space:pre-line; }
.account-task-table th { color:#60708a; font-weight:700; background:#f6f8fc; }
.account-task-table tr:last-child td { border-bottom:0; }
@media (max-width: 760px) { .account-ops-grid { grid-template-columns:1fr; } .task-panel-head { display:grid; } }
@media (max-width: 760px) { .team-head,.compact-form { display:grid; } .team-grid { grid-template-columns:1fr; } .team-allowance { width:100%; } }

/* 2026 brand and batch-remote visual system */
:root {
  --brand-950: #06111f;
  --brand-900: #09182b;
  --brand-800: #102743;
  --brand-500: #2f6bff;
  --brand-400: #4c86ff;
  --electric: #5ee7f2;
  --surface: #f4f7fb;
  --premium-shadow: 0 30px 90px rgba(7, 23, 48, 0.18);
}
body {
  background:
    radial-gradient(circle at 8% 18%, rgba(47, 107, 255, 0.055), transparent 25%),
    radial-gradient(circle at 92% 36%, rgba(94, 231, 242, 0.05), transparent 22%),
    #fff;
}
.site-header {
  height: 74px;
  z-index: 50;
  border-bottom-color: rgba(218, 225, 237, 0.72);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 35px rgba(18, 39, 73, 0.035);
}
.site-header .button.small {
  border-radius: 12px;
  background: linear-gradient(135deg, #3157ff, #397dff);
  box-shadow: 0 10px 24px rgba(49, 87, 255, 0.24);
}
.batch-hero {
  width: min(1420px, calc(100% - 32px));
  max-width: none;
  min-height: 760px;
  margin: 18px auto 0;
  padding: 76px clamp(34px, 5vw, 76px) 70px;
  grid-template-columns: minmax(430px, 0.86fr) minmax(620px, 1.14fr);
  gap: clamp(42px, 5vw, 78px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 12%, rgba(48, 111, 255, 0.34), transparent 35%),
    radial-gradient(circle at 7% 92%, rgba(13, 191, 210, 0.18), transparent 30%),
    linear-gradient(135deg, #06111f 0%, #0a1c33 48%, #071426 100%);
  box-shadow: 0 34px 100px rgba(6, 17, 31, 0.2);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, #000, transparent 86%);
}
.hero-glow {
  position: absolute;
  z-index: -2;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(25px);
  opacity: 0.45;
  pointer-events: none;
  animation: hero-ambient 9s ease-in-out infinite alternate;
}
.hero-glow-one { right: 20%; top: -250px; background: rgba(44, 112, 255, 0.55); }
.hero-glow-two { left: -250px; bottom: -260px; background: rgba(22, 211, 216, 0.28); animation-delay: -4s; }
.batch-hero .hero-copy { position: relative; z-index: 3; }
.batch-hero .release-pill {
  color: #cfe0ff;
  border-color: rgba(130, 170, 255, 0.22);
  background: rgba(80, 129, 255, 0.1);
  backdrop-filter: blur(14px);
}
.hero-overline {
  display: block;
  margin-top: 30px;
  color: #69dce7;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 2.4px;
}
.batch-hero h1 {
  max-width: 700px;
  margin: 15px 0 24px;
  color: #fff;
  font-size: clamp(40px, 3.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -4px;
  white-space: nowrap;
}
.batch-hero h1 em {
  color: transparent;
  background: linear-gradient(90deg, #69e6ed 0%, #80acff 44%, #b7c8ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
.batch-hero .hero-lead {
  max-width: 650px;
  color: #adbed3;
  font-size: 17px;
  line-height: 1.85;
}
.batch-hero .hero-actions { margin: 30px 0 25px; }
.hero-primary {
  gap: 8px;
  border-radius: 12px;
  background: linear-gradient(135deg, #356bff, #2589ff);
  box-shadow: 0 16px 36px rgba(37, 115, 255, 0.33);
}
.hero-primary i { font-size: 18px; font-style: normal; transition: transform 0.2s ease; }
.hero-primary:hover i { transform: translateX(4px); }
.hero-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #eef5ff;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
  backdrop-filter: blur(12px);
}
.hero-secondary:hover { color: #fff; background: rgba(255, 255, 255, 0.13); box-shadow: none; }
.hero-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 17px;
  color: #8fa6bf;
  font-size: 11px;
}
.hero-capabilities span { display: inline-flex; align-items: center; gap: 7px; }
.hero-capabilities i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #48dfba;
  box-shadow: 0 0 0 4px rgba(72, 223, 186, 0.09);
}
.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 35px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.07);
}
.hero-kpis article { padding: 16px 13px; background: rgba(6, 17, 31, 0.46); }
.hero-kpis strong,
.hero-kpis span { display: block; }
.hero-kpis strong { color: #f7fbff; font-size: 15px; }
.hero-kpis span { margin-top: 5px; color: #7890aa; font-size: 9px; }
.product-stage {
  --stage-rx: 1deg;
  --stage-ry: -2deg;
  min-width: 0;
  position: relative;
  z-index: 3;
  perspective: 1400px;
  transform-style: preserve-3d;
}
.stage-halo {
  position: absolute;
  inset: 7% -5% -7%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 125, 255, 0.28), transparent 69%);
  filter: blur(22px);
  animation: stage-breathe 5s ease-in-out infinite;
}
.batch-product-frame {
  width: 100%;
  min-width: 0;
  border-color: rgba(146, 176, 215, 0.22);
  border-radius: 19px;
  background: #edf2f8;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: rotateX(var(--stage-rx)) rotateY(var(--stage-ry));
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
}
.batch-product-frame .window-bar { height: 42px; color: #5c6c80; }
.batch-product-frame .window-bar b { display: inline-flex; align-items: center; gap: 7px; font-size: 10px; }
.batch-product-frame .window-bar b img { width: 16px; height: 16px; }
.batch-product-frame .window-bar small { margin-left: auto; display: flex; align-items: center; gap: 5px; color: #15966b; }
.batch-toolbar {
  min-height: 54px;
  padding: 9px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #d9e0ea;
  background: #f9fbfd;
}
.batch-toolbar > div b,
.batch-toolbar > div span { display: block; }
.batch-toolbar > div b { font-size: 11px; }
.batch-toolbar > div span { margin-top: 3px; color: #8b98a9; font-size: 8px; }
.batch-toolbar nav { display: flex; align-items: center; gap: 6px; }
.batch-toolbar nav span,
.batch-toolbar nav b {
  padding: 7px 9px;
  border: 1px solid #dfe5ed;
  border-radius: 6px;
  background: #fff;
  color: #68788c;
  font-size: 7px;
}
.batch-toolbar nav b { border-color: #a5b9ff; color: #2852da; background: #edf2ff; }
.batch-product-body { min-height: 420px; }
.batch-product-body > aside { width: 138px; min-width: 138px; padding: 18px 10px; background: #0b192c; }
.batch-product-body > aside a { color: #8296ad; font-size: 8px; }
.batch-product-body > aside a b { color: #a9bbce; }
.batch-product-body > aside a.active { color: #fff; background: linear-gradient(90deg, rgba(54, 111, 255, 0.26), rgba(54, 111, 255, 0.08)); }
.batch-product-body .aside-title { color: #52677f; font-size: 7px; }
.wall-workspace { min-width: 0; padding: 13px; display: grid; align-content: start; background: #e9eef5; }
.live-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.remote-tile {
  min-width: 0;
  height: 145px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 38, 67, 0.12);
  border-radius: 8px;
  background: #0e1b2b;
  box-shadow: 0 5px 15px rgba(12, 29, 51, 0.08);
}
.remote-tile:before,
.remote-tile:after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.remote-tile:before {
  inset: 24px 8px 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 100% 18px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 34%, transparent 34%);
}
.remote-tile:after {
  left: -30%;
  top: 24px;
  width: 24%;
  height: 90px;
  opacity: 0.32;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: remote-shine 6.5s ease-in-out infinite;
}
.remote-tile:nth-child(2):after { animation-delay: -1s; }
.remote-tile:nth-child(3):after { animation-delay: -2s; }
.remote-tile:nth-child(4):after { animation-delay: -3s; }
.remote-tile:nth-child(5):after { animation-delay: -4s; }
.remote-tile:nth-child(6):after { animation-delay: -5s; }
.remote-blue { background: linear-gradient(145deg, #153b69, #08182d); }
.remote-violet { background: linear-gradient(145deg, #3c316e, #10132f); }
.remote-cyan { background: linear-gradient(145deg, #0d5266, #092133); }
.remote-indigo { background: linear-gradient(145deg, #243c79, #0b1531); }
.remote-green { background: linear-gradient(145deg, #14574d, #092827); }
.remote-amber { background: linear-gradient(145deg, #684725, #281c14); }
.remote-tile header,
.remote-tile > div {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.remote-tile header { padding: 7px 8px; color: #c9d6e6; font-size: 7px; }
.remote-tile header i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #46d9aa;
  box-shadow: 0 0 0 3px rgba(70, 217, 170, 0.12);
  animation: tile-status 2.4s ease-in-out infinite;
}
.remote-tile > div { position: absolute; left: 8px; right: 8px; bottom: 7px; }
.remote-tile > div b { color: #f4f8ff; font-size: 7px; }
.remote-tile > div small { color: #8296ad; font-size: 6px; }
.command-dock {
  margin-top: 10px;
  min-height: 39px;
  padding: 7px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #dbe2ec;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 8px 18px rgba(17, 36, 65, 0.07);
}
.command-dock span { margin-right: 4px; color: #314156; font-size: 7px; font-weight: 750; }
.command-dock span i { color: #3266f4; font-style: normal; }
.command-dock > b { padding: 5px 7px; border: 1px solid #dce3ed; border-radius: 5px; color: #516177; background: #f8fafc; font-size: 7px; }
.command-dock em { margin-left: auto; color: #258567; font-size: 7px; font-style: normal; }
.floating-status {
  position: absolute;
  z-index: 6;
  min-width: 168px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  color: #dce8f7;
  background: rgba(8, 24, 43, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  font-size: 8px;
  animation: status-float 4.5s ease-in-out infinite;
}
.floating-status > i { width: 8px; height: 8px; border-radius: 50%; background: #43d9aa; box-shadow: 0 0 0 5px rgba(67, 217, 170, 0.1); font-style: normal; }
.floating-status > b { color: #6ee3ec; font-size: 9px; }
.status-connected { left: -28px; bottom: 48px; }
.status-command { right: -24px; top: 74px; animation-delay: -2.2s; }
.status-command > i { width: 24px; height: 24px; display: grid; place-items: center; color: #7de9f0; background: rgba(94, 231, 242, 0.1); }
.proof-strip {
  max-width: 1180px;
  margin: 32px auto 20px;
  border: 1px solid #e0e7f0;
  border-radius: 16px;
  color: #526178;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 44px rgba(18, 40, 75, 0.06);
  backdrop-filter: blur(16px);
}
.proof-strip span:before { width: 7px; height: 7px; border-radius: 50%; background: linear-gradient(135deg, #2f6bff, #5ee7f2); }
.batch-workflow-section {
  max-width: 1180px;
  margin: 110px auto 25px;
  padding: 58px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 58px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(48, 105, 255, 0.25), transparent 31%),
    linear-gradient(135deg, #071525, #0c2038);
  box-shadow: var(--premium-shadow);
}
.batch-workflow-section:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -210px;
  bottom: -250px;
  border: 70px solid rgba(87, 229, 239, 0.05);
  border-radius: 50%;
}
.batch-workflow-copy { position: relative; z-index: 2; }
.batch-workflow-copy .kicker { color: #67dfe8; }
.batch-workflow-copy h2 { margin: 14px 0 18px; font-size: clamp(30px, 2.7vw, 40px); line-height: 1.14; letter-spacing: -1.6px; }
.batch-workflow-copy p { color: #96a9bf; font-size: 13px; line-height: 1.8; }
.batch-workflow-copy .section-link { display: inline-block; margin-top: 12px; color: #72e5ed; font-size: 12px; }
.batch-flow { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; position: relative; z-index: 2; }
.batch-flow article {
  min-height: 170px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.batch-flow article:hover { transform: translateY(-4px); border-color: rgba(103, 223, 232, 0.35); background: rgba(255, 255, 255, 0.085); }
.batch-flow article > span { position: absolute; right: 15px; top: 13px; color: rgba(255, 255, 255, 0.19); font-size: 10px; font-weight: 800; }
.batch-flow article > i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: #72e5ed; background: rgba(87, 217, 231, 0.1); font-size: 17px; font-style: normal; }
.batch-flow h3 { margin: 15px 0 8px; font-size: 15px; }
.batch-flow p { margin: 0; color: #8fa3ba; font-size: 10px; line-height: 1.65; }
.section { padding-top: 105px; padding-bottom: 105px; }
.section-heading h2 { letter-spacing: -1.8px; }
.feature-card {
  border-color: #e1e7f0;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(13, 35, 70, 0.05);
}
.feature-card:after {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 87, 255, 0.07), transparent 68%);
  pointer-events: none;
}
.feature-card:hover { transform: translateY(-7px); border-color: #c7d5ef; box-shadow: 0 24px 60px rgba(13, 35, 70, 0.1); }
.feature-card.dark-card { background: linear-gradient(135deg, #071627, #102b49); }
.scenario-grid article { border-radius: 19px; box-shadow: 0 16px 48px rgba(15, 36, 71, 0.055); }
.scenario-grid article:hover { transform: translateY(-7px); box-shadow: 0 24px 58px rgba(15, 36, 71, 0.11); }
.pricing-section { position: relative; }
.price-card { border-radius: 20px; }
.download-panel { border-radius: 28px; background: radial-gradient(circle at 82% 5%, rgba(47, 107, 255, 0.35), transparent 34%), linear-gradient(135deg, #061321, #0c2642); }
.final-cta { position: relative; overflow: hidden; border-radius: 28px; background: radial-gradient(circle at 80% 0%, rgba(94, 231, 242, 0.22), transparent 32%), linear-gradient(135deg, #2559ed, #172b9f); }
.product-page {
  background:
    radial-gradient(circle at 5% 3%, rgba(47, 107, 255, 0.07), transparent 24%),
    radial-gradient(circle at 94% 20%, rgba(94, 231, 242, 0.055), transparent 22%),
    #fff;
}
.product-page > .page-hero {
  width: min(1420px, calc(100% - 32px));
  max-width: none;
  min-height: 620px;
  margin: 18px auto 55px;
  padding-left: clamp(40px, 5vw, 78px);
  padding-right: clamp(40px, 5vw, 78px);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 14%, rgba(48, 111, 255, 0.27), transparent 34%),
    linear-gradient(135deg, #061321, #0b2037);
  box-shadow: 0 30px 85px rgba(7, 25, 48, 0.16);
}
.product-page > .page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.2;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000, transparent 88%);
  pointer-events: none;
}
.product-page > .page-hero > * { position: relative; z-index: 1; }
.product-page > .page-hero .eyebrow { color: #68dce7; }
.product-page > .page-hero .page-hero-copy h1 {
  color: #fff;
  font-size: clamp(40px, 3.5vw, 54px);
  line-height: 1.09;
}
.feature-page-hero .page-hero-copy h1 {
  font-size: clamp(34px, 2.6vw, 44px);
  letter-spacing: -2px;
}
.feature-page-hero .page-hero-copy > p {
  max-width: 610px;
  font-size: 15px;
}
.product-page > .page-hero .page-hero-copy h1 em {
  color: transparent;
  background: linear-gradient(90deg, #67e4ec, #8eacff);
  background-clip: text;
  -webkit-background-clip: text;
}
.product-page > .page-hero .page-hero-copy > p { color: #a7b8cc; }
.product-page > .page-hero .inline-link { color: #72e3eb; }
.product-page .orbit-card { border-color: rgba(255, 255, 255, 0.14); color: #fff; background: rgba(10, 29, 51, 0.88); }
.product-page .orbit-card small { color: #89a0b9; }
.product-page .orbit-ring { border-color: rgba(108, 157, 255, 0.3); }
.page-proof { margin-top: -92px; position: relative; z-index: 5; }
.page-proof article { border-color: #e0e7f0; box-shadow: 0 18px 40px rgba(15, 36, 70, 0.07); }
.feature-advantages {
  width: min(1420px, calc(100% - 32px));
  margin: 0 auto 25px;
  padding: 85px clamp(24px, 4vw, 58px) 45px;
}
.advantage-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 34px;
}
.advantage-heading h2 {
  max-width: 700px;
  margin: 12px 0 0;
  color: #0b1728;
  font-size: clamp(29px, 2.1vw, 34px);
  line-height: 1.18;
  letter-spacing: -1.5px;
}
.advantage-heading > p {
  max-width: 650px;
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.8;
}
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.advantage-card {
  min-height: 238px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  border: 1px solid #e0e7f0;
  border-radius: 19px;
  background: linear-gradient(145deg, #fff, #f7f9fc);
  box-shadow: 0 13px 38px rgba(15, 37, 73, 0.055);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.advantage-card:hover {
  transform: translateY(-5px);
  border-color: #b9caff;
  box-shadow: 0 22px 52px rgba(19, 53, 110, 0.11);
}
.advantage-card > span {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #a6b1c1;
  font-size: 10px;
  font-weight: 800;
}
.advantage-card > i {
  min-width: 46px;
  height: 32px;
  padding: 0 10px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  color: #3157ff;
  background: #eaf0ff;
  font-size: 9px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.4px;
}
.advantage-card h3 {
  margin: 20px 0 10px;
  color: #142033;
  font-size: 17px;
  letter-spacing: -0.4px;
}
.advantage-card p {
  margin: 0;
  color: #667085;
  font-size: 12px;
  line-height: 1.75;
}
.advantage-card > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 17px;
}
.advantage-card > div b {
  padding: 5px 8px;
  border-radius: 20px;
  color: #53647b;
  background: #eef2f7;
  font-size: 9px;
  font-weight: 750;
}
.advantage-card.primary {
  border-color: #173d67;
  background: radial-gradient(circle at 90% 5%, rgba(72, 131, 255, 0.34), transparent 34%), linear-gradient(145deg, #071727, #0c304e);
  box-shadow: 0 20px 50px rgba(7, 32, 58, 0.18);
}
.advantage-card.primary h3 { color: #fff; }
.advantage-card.primary p { color: #a8bbcf; }
.advantage-card.primary > span { color: #6f8ca8; }
.advantage-card.primary > i { color: #70e2ea; background: rgba(94, 225, 236, 0.1); }
.advantage-card.primary > div b { color: #b7cbe0; background: rgba(255, 255, 255, 0.08); }
.advantage-card.cloud {
  border-color: #cdd8ff;
  background: radial-gradient(circle at 100% 0%, rgba(78, 105, 255, 0.16), transparent 42%), linear-gradient(145deg, #fbfcff, #f0f4ff);
}
.feature-story,
.scenario-detail { border-top-color: #e8edf4; }
.visual-panel,
.scenario-illustration { border-radius: 24px; box-shadow: 0 30px 70px rgba(16, 38, 74, 0.13); }
.scenario-stack article {
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
}
.scenario-stack article:hover { border-color: rgba(103, 226, 235, 0.35); }
.scenario-stack article > span { color: #67dfe9; }
.scenario-stack small { color: #849ab2; }
.scenario-stack article > b { color: #c8d8eb; background: rgba(255, 255, 255, 0.08); }
.compact-page-hero .pricing-note-card { border-color: rgba(255, 255, 255, 0.13); color: #fff; background: rgba(255, 255, 255, 0.065); backdrop-filter: blur(15px); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18); }
.compact-page-hero .pricing-note-card > span,
.compact-page-hero .pricing-note-card p { color: #8fa4bc; }
.pricing-page-section { padding-top: 35px; }
.comparison-wrap { border-radius: 20px; box-shadow: 0 18px 50px rgba(14, 35, 70, 0.06); }
.download-page-hero {
  width: min(1420px, calc(100% - 32px));
  max-width: none;
  margin: 18px auto 70px;
  padding: 80px clamp(48px, 5vw, 84px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: clamp(52px, 5vw, 84px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 82% 8%, rgba(52, 115, 255, 0.3), transparent 32%),
    linear-gradient(125deg, #061220, #0c2c4a);
  box-shadow: 0 32px 90px rgba(6, 26, 50, 0.2);
}
.download-page-copy h1 {
  font-size: clamp(40px, 3.5vw, 54px);
  line-height: 1.08;
}
.role-explorer { border-radius: 24px; box-shadow: 0 22px 60px rgba(15, 37, 73, 0.08); }
.compatibility-section { border-radius: 26px; background: radial-gradient(circle at 90% 5%, rgba(47, 107, 255, 0.27), transparent 34%), linear-gradient(135deg, #061321, #0c2743); box-shadow: 0 26px 70px rgba(7, 25, 48, 0.16); }
.auth-view { background: radial-gradient(circle at 8% 10%, rgba(47, 107, 255, 0.09), transparent 27%), #f5f8fc; }
.auth-shell { border: 1px solid #dfe6f0; border-radius: 26px; box-shadow: 0 34px 90px rgba(10, 32, 66, 0.14); }
.auth-intro { background: radial-gradient(circle at 20% 5%, rgba(49, 111, 255, 0.3), transparent 38%), linear-gradient(145deg, #061321, #0b2845); }
.site-footer {
  width: min(1420px, calc(100% - 32px));
  max-width: none;
  margin: 90px auto 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  color: #8fa3ba;
  background: radial-gradient(circle at 10% 0%, rgba(49, 104, 255, 0.18), transparent 30%), linear-gradient(135deg, #05101d, #081a2d);
  box-shadow: 0 24px 70px rgba(7, 24, 47, 0.15);
}
.site-footer strong { color: #f1f6fc; }
.site-footer a:hover { color: #6ce2eb; }
.site-footer > small { border-top-color: rgba(255, 255, 255, 0.08); }
@keyframes hero-ambient { from { transform: translate3d(0, 0, 0) scale(0.9); } to { transform: translate3d(35px, 25px, 0) scale(1.08); } }
@keyframes stage-breathe { 0%, 100% { opacity: 0.62; transform: scale(0.96); } 50% { opacity: 1; transform: scale(1.04); } }
@keyframes remote-shine { 0%, 62% { left: -35%; } 88%, 100% { left: 130%; } }
@keyframes tile-status { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }
@keyframes status-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

@media (max-width: 1180px) {
  .batch-hero { grid-template-columns: minmax(380px, 0.85fr) minmax(530px, 1.15fr); gap: 36px; padding-left: 42px; padding-right: 42px; }
  .batch-product-body > aside { width: 112px; min-width: 112px; }
  .remote-tile { height: 128px; }
  .batch-workflow-section { margin-left: 24px; margin-right: 24px; }
  .advantage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .batch-hero { width: calc(100% - 24px); min-height: auto; grid-template-columns: 1fr; padding: 68px 45px 74px; }
  .batch-hero .hero-copy { max-width: 720px; }
  .product-stage { width: min(760px, 100%); margin: 10px auto 0; }
  .batch-workflow-section { grid-template-columns: 1fr; gap: 35px; }
  .batch-workflow-copy { max-width: 650px; }
  .product-page > .page-hero { width: calc(100% - 24px); min-height: auto; padding: 68px 45px 74px; }
  .download-page-hero {
    width: calc(100% - 24px);
    padding: 70px 45px;
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .advantage-heading { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 680px) {
  .batch-hero { width: calc(100% - 16px); margin-top: 8px; padding: 50px 20px 56px; border-radius: 23px; }
  .batch-hero h1 { font-size: 33px; line-height: 1.09; letter-spacing: -1.8px; }
  .batch-hero .hero-lead { font-size: 15px; }
  .batch-hero .hero-actions { align-items: stretch; flex-direction: column; }
  .batch-hero .hero-actions .button { width: 100%; }
  .hero-capabilities { display: grid; grid-template-columns: 1fr; }
  .hero-kpis { grid-template-columns: 1fr; }
  .hero-kpis article { display: grid; grid-template-columns: 1fr 1.6fr; align-items: center; }
  .hero-kpis span { margin: 0; }
  .batch-product-frame { transform: none; }
  .batch-product-frame .window-bar small,
  .batch-toolbar nav span,
  .batch-product-body > aside { display: none; }
  .batch-toolbar { align-items: flex-start; }
  .live-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .remote-tile { height: 116px; }
  .command-dock em { display: none; }
  .floating-status { display: none; }
  .batch-workflow-section { margin: 70px 12px 10px; padding: 35px 22px; border-radius: 22px; }
  .batch-flow { grid-template-columns: 1fr; }
  .batch-flow article { min-height: 150px; }
  .section { padding-top: 75px; padding-bottom: 75px; }
  .product-page > .page-hero { width: calc(100% - 16px); margin-top: 8px; padding: 52px 20px 58px; border-radius: 23px; }
  .product-page > .page-hero .page-hero-copy h1,
  .download-page-copy h1 { font-size: 34px; letter-spacing: -1.7px; }
  .feature-page-hero .page-hero-copy h1 { font-size: 29px; letter-spacing: -1.2px; }
  .feature-advantages { width: calc(100% - 16px); padding: 62px 12px 20px; }
  .advantage-heading { padding: 0 8px; }
  .advantage-heading h2 { font-size: 29px; }
  .advantage-grid { grid-template-columns: 1fr; }
  .advantage-card { min-height: auto; padding: 23px; }
  .page-proof { margin-top: -42px; }
  .download-page-hero {
    width: calc(100% - 16px);
    margin-top: 8px;
    padding: 60px 20px 70px;
    border-radius: 23px;
  }
  .site-footer { width: calc(100% - 16px); margin-top: 65px; border-radius: 22px; }
}
@media (max-width: 360px) {
  .batch-hero h1 { font-size: 30px; letter-spacing: -1.5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
