:root {
  --bg: #050814;
  --bg2: #070b18;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.09);
  --line: rgba(100, 150, 255, 0.22);
  --text: #fff;
  --muted: #aab6d3;
  --blue: #2f6bff;
  --cyan: #00d4ff;
  --purple: #7c5cff;
  --ok: #3ee8a8;
  --danger: #ff6b8a;
  --max: 1240px;
  --radius: 8px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei",
    "PingFang SC", Arial, sans-serif;
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(47, 107, 255, 0.24),
      transparent 34%
    ),
    radial-gradient(
      circle at 88% 10%,
      rgba(124, 92, 255, 0.22),
      transparent 30%
    ),
    linear-gradient(180deg, #050814 0%, #070b18 48%, #050814 100%);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  color: var(--muted);
  margin: 0 0 18px;
}
h1,
h2,
h3 {
  margin: 0;
  color: #fff;
  line-height: 1.14;
  letter-spacing: 0;
}
h1 {
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 850;
}
h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 820;
}
h3 {
  font-size: 20px;
  font-weight: 760;
}
svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bg-glow {
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  filter: blur(18px);
  opacity: 0.55;
}
.glow-a {
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.14);
  left: -120px;
  top: 230px;
}
.glow-b {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(124, 92, 255, 0.12);
  right: -160px;
  top: 560px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 8, 20, 0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(100, 150, 255, 0.14);
}
.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  font-size: 20px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 22px rgba(47, 107, 255, 0.5);
  font-weight: 900;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.nav-links a {
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 15px;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(47, 107, 255, 0.14);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.login-link {
  color: var(--muted);
  font-size: 15px;
}
.nav-toggle {
  display: none;
  background: var(--panel);
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 8px;
  width: 42px;
  height: 42px;
}
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 22px;
}
.first {
  padding-top: 84px;
}
.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 52px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  color: #92e9ff;
  font-weight: 760;
  font-size: 14px;
  letter-spacing: 0;
  padding: 6px 10px;
  border: 1px solid rgba(0, 212, 255, 0.24);
  background: rgba(0, 212, 255, 0.08);
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero-copy h1 {
  margin-bottom: 24px;
}
.hero-copy > p,
.page-hero > p {
  font-size: 19px;
  max-width: 760px;
}
.hero-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 780;
  transition: 0.22s ease;
  cursor: pointer;
  background: none;
  color: #fff;
  font-size: 16px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), #178bff 55%, var(--cyan));
  box-shadow: 0 0 26px rgba(47, 107, 255, 0.36);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(0, 212, 255, 0.42);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
}
.btn-secondary:hover,
.btn-ghost:hover {
  border-color: rgba(0, 212, 255, 0.48);
  background: rgba(0, 212, 255, 0.1);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.16);
  color: #dce7ff;
}
.btn-small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 14px;
}
.quick-links {
  display: flex;
  gap: 18px;
  margin: 20px 0 26px;
  color: #cfd9ff;
}
.quick-links a {
  border-bottom: 1px solid rgba(0, 212, 255, 0.5);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.metrics div,
.value-list div,
.stat-grid article,
.faq-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
}
.metrics strong {
  display: block;
  font-size: 24px;
}
.metrics span {
  color: var(--muted);
  font-size: 14px;
}
.agent-console {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.045)
  );
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 16px;
  overflow: hidden;
}
.agent-console:before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.22),
    transparent 35%,
    rgba(124, 92, 255, 0.22)
  );
  pointer-events: none;
}
.console-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
}
.console-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6b8a;
}
.console-top span:nth-child(2) {
  background: #ffd166;
}
.console-top span:nth-child(3) {
  background: #3ee8a8;
}
.console-top b {
  margin-left: auto;
  color: #fff;
  font-size: 13px;
}
.console-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.mini-agent {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(100, 150, 255, 0.16);
  background: rgba(5, 8, 20, 0.5);
  border-radius: 8px;
}
.mini-agent b {
  display: block;
  font-size: 14px;
}
.mini-agent span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-weight: 850;
  color: #fff;
}
.avatar-1 {
  background: linear-gradient(135deg, #2f6bff, #00d4ff);
}
.avatar-2 {
  background: linear-gradient(135deg, #7c5cff, #ff6bd6);
}
.avatar-3 {
  background: linear-gradient(135deg, #00a7ff, #3ee8a8);
}
.avatar-4 {
  background: linear-gradient(135deg, #6d7cff, #9bffda);
}
.task-panel {
  position: relative;
  margin-top: 14px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(100, 150, 255, 0.18);
  border-radius: 8px;
}
.task-panel span {
  color: var(--muted);
  display: block;
  font-size: 13px;
}
.task-panel b {
  display: block;
  margin: 3px 0 10px;
}
.progress {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}
.progress i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.prompt-box {
  position: relative;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  background: rgba(0, 212, 255, 0.08);
  border-radius: 8px;
  color: #dbeeff;
}
.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
}
.section-head.align-left {
  text-align: left;
  margin-left: 0;
}
.expert-grid,
.skill-grid,
.news-grid,
.value-grid,
.price-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.skill-grid,
.news-grid {
  grid-template-columns: repeat(3, 1fr);
}
.value-grid,
.price-grid,
.faq-grid {
  grid-template-columns: repeat(3, 1fr);
}
.expert-card,
.skill-card,
.news-card,
.info-panel,
.price-card,
.value-grid article {
  padding: 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: 0.22s ease;
}
.expert-card:hover,
.skill-card:hover,
.news-card:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.46);
  background: var(--panel2);
}
.expert-card .role {
  color: #8ee8ff;
  margin: 6px 0 10px;
}
.expert-card p,
.skill-card p,
.news-card p {
  font-size: 14px;
}
.gold-line {
  margin: 28px auto 0;
  text-align: center;
  max-width: 900px;
  color: #dce7ff;
  background: linear-gradient(
    90deg,
    rgba(47, 107, 255, 0.12),
    rgba(0, 212, 255, 0.12)
  );
  border: 1px solid rgba(0, 212, 255, 0.22);
  padding: 18px;
  border-radius: 8px;
}
.alt-band {
  max-width: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.025),
    rgba(47, 107, 255, 0.045)
  );
  border-top: 1px solid rgba(100, 150, 255, 0.12);
  border-bottom: 1px solid rgba(100, 150, 255, 0.12);
}
.alt-band > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.skill-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  display: grid;
  place-items: center;
  color: #9bedff;
  background: rgba(0, 212, 255, 0.09);
  font-weight: 850;
  margin-bottom: 16px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8ee8ff;
  font-weight: 760;
}
.tag,
.pill {
  display: inline-flex;
  border: 1px solid rgba(0, 212, 255, 0.25);
  background: rgba(0, 212, 255, 0.08);
  color: #9bedff;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
}
.pill.muted {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}
.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}
.card-meta a {
  color: #8ee8ff;
}
.search-band {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(
    135deg,
    rgba(47, 107, 255, 0.13),
    rgba(0, 212, 255, 0.06)
  );
  border-radius: 8px;
  margin-top: 88px;
}
.search-form {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(100, 150, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border-radius: 8px;
  padding: 0 14px;
  font: inherit;
}
input:focus,
select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.12);
}
input::placeholder {
  color: #7f8cac;
}
.hint {
  font-size: 14px;
}
.value-list {
  display: grid;
  gap: 12px;
}
.value-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dce7ff;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.steps {
  display: grid;
  gap: 12px;
}
.steps div {
  padding: 16px 18px;
  border-radius: 8px;
  border: 1px solid rgba(100, 150, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
}
.steps.three {
  grid-template-columns: repeat(3, 1fr);
}
.steps.three b {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  margin-bottom: 14px;
}
.page-hero {
  text-align: center;
}
.page-hero p {
  margin-left: auto;
  margin-right: auto;
}
.timeline {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.timeline div {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
}
.timeline b {
  color: #8ee8ff;
}
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.filter-bar button,
.tabs button {
  border: 1px solid rgba(100, 150, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
}
.filter-bar .active,
.tabs .active {
  background: rgba(47, 107, 255, 0.22);
  color: #fff;
  border-color: rgba(0, 212, 255, 0.4);
}
.compact {
  min-height: 260px;
}
.check {
  position: relative;
  padding-left: 24px;
}
.check:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.5);
}
.big-search {
  max-width: 920px;
  margin: 32px auto 0;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
}
.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}
th,
td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(100, 150, 255, 0.12);
  color: #dce7ff;
}
th {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
}
td a {
  color: #8ee8ff;
}
.score {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(62, 232, 168, 0.12);
  color: #8fffd1;
}
.action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.action-grid a {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: #dce7ff;
  text-align: center;
}
.console-body .site-header,
.console-body .site-footer {
  display: none;
}
.console-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  max-width: none;
  padding: 0;
  min-height: 100vh;
}
.console-side {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  background: rgba(5, 8, 20, 0.86);
}
.console-brand {
  margin-bottom: 26px;
}
.console-side a:not(.brand) {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--muted);
  margin-bottom: 6px;
}
.console-side a.active,
.console-side a:hover {
  background: rgba(47, 107, 255, 0.18);
  color: #fff;
}
.console-main {
  padding: 34px;
  overflow: hidden;
}
.console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}
.console-head h1 {
  font-size: 38px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.stat-grid strong {
  display: block;
  font-size: 30px;
}
.stat-grid span {
  color: var(--muted);
}
.chart-panel {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
}
.bars {
  height: 260px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding-top: 24px;
}
.bars i {
  flex: 1;
  min-width: 18px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  border-radius: 8px 8px 0 0;
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.24);
}
.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 8px;
}
.text-mini {
  border: 0;
  background: none;
  color: #8ee8ff;
  margin-left: 8px;
  cursor: pointer;
}
.danger {
  color: var(--danger);
}
.donut {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: conic-gradient(
    var(--blue) 0 34%,
    var(--cyan) 34% 60%,
    var(--purple) 60% 82%,
    rgba(255, 255, 255, 0.15) 82%
  );
  margin: 18px auto;
}
.no-pad {
  padding: 0;
}
.docs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 34px;
}
.doc-side {
  position: sticky;
  top: 86px;
  align-self: start;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
}
.doc-side a {
  display: block;
  padding: 10px;
  color: var(--muted);
}
.doc-side a:hover {
  color: #fff;
}
.doc-main {
  max-width: 850px;
}
.doc-main h1 {
  font-size: 54px;
}
.doc-main h2 {
  font-size: 28px;
  margin: 32px 0 12px;
}
pre {
  white-space: pre-wrap;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(100, 150, 255, 0.18);
  border-radius: 8px;
  padding: 16px;
  color: #dce7ff;
  overflow: auto;
}
.article {
  max-width: 860px;
}
.article h1 {
  font-size: 52px;
  margin: 18px 0;
}
.article p {
  font-size: 18px;
}
.article-meta {
  color: #8ee8ff;
}
.price-card strong {
  display: block;
  font-size: 38px;
  margin: 14px 0 20px;
}
.price-card.featured {
  border-color: rgba(0, 212, 255, 0.55);
  box-shadow: 0 0 36px rgba(47, 107, 255, 0.25);
}
.login-page {
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
}
.login-panel {
  width: min(440px, 100%);
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
}
.login-panel h1 {
  font-size: 38px;
  margin-top: 24px;
}
.login-panel label {
  display: block;
  color: #dce7ff;
  margin: 14px 0 6px;
}
.login-panel .btn {
  width: 100%;
  margin: 20px 0 12px;
}
.site-footer {
  border-top: 1px solid rgba(100, 150, 255, 0.14);
  background: rgba(5, 8, 20, 0.55);
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 22px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
}
.footer-grid h4 {
  margin: 0 0 12px;
}
.footer-grid a,
.footer-grid span {
  display: block;
  color: var(--muted);
  margin: 7px 0;
}
.footer-grid a:hover {
  color: #fff;
}
.footer-brand {
  margin-bottom: 14px;
}
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 22px;
  color: #7180a4;
  border-top: 1px solid rgba(100, 150, 255, 0.1);
}
@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }
  .nav-links,
  .nav-actions {
    display: none;
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 68px;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(5, 8, 20, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
  }
  .hero,
  .search-band,
  .split,
  .console-shell,
  .docs-layout {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .expert-grid,
  .skill-grid,
  .news-grid,
  .value-grid,
  .price-grid,
  .faq-grid,
  .steps.three,
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .console-side {
    position: relative;
    height: auto;
  }
  .console-body .site-header {
    display: block;
  }
  .console-main {
    padding: 22px;
  }
  .action-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  body {
    font-size: 15px;
  }
  .section {
    padding: 58px 16px;
  }
  .first {
    padding-top: 58px;
  }
  h1 {
    font-size: 42px;
  }
  .hero-copy > p,
  .page-hero > p {
    font-size: 17px;
  }
  .hero-actions,
  .search-form,
  .tabs {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .metrics,
  .expert-grid,
  .skill-grid,
  .news-grid,
  .value-grid,
  .price-grid,
  .faq-grid,
  .steps.three,
  .stat-grid,
  .action-grid,
  .console-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .timeline div {
    grid-template-columns: 1fr;
  }
  .console-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .table-wrap {
    margin-left: -16px;
    margin-right: -16px;
    border-radius: 0;
  }
  .quick-links {
    flex-direction: column;
    gap: 8px;
  }
  .nav-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* WorkBuddy-inspired OraSkl homepage */
.workbuddy-inspired {
  --wb-bg: #000;
  --wb-panel: #191a23;
  --wb-panel-2: #111219;
  --wb-text: #efeeec;
  --wb-muted: rgba(239, 238, 236, 0.68);
  --wb-green: #28b894;
  --wb-green-2: #32e6b9;
  --wb-line: rgba(239, 238, 236, 0.1);
  background: #000;
  color: var(--wb-text);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei",
    "PingFang SC", Arial, sans-serif;
}
.workbuddy-inspired svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.workbuddy-inspired .bg-glow,
.workbuddy-inspired .site-header,
.workbuddy-inspired .site-footer {
  display: none;
}
.wb-page {
  overflow: hidden;
  background: #000;
  min-height: 100vh;
}
.wb-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 60;
  height: 78px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 34px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.28));
  backdrop-filter: blur(18px);
  color: #fff;
}
.wb-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 800;
}
.wb-brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background: #28b894;
  color: #001b14;
  font-weight: 900;
}
.wb-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  flex: 1;
}
.wb-nav a {
  font-size: 15px;
  color: rgba(239, 238, 236, 0.72);
  white-space: nowrap;
}
.wb-nav a:hover,
.wb-nav a.active {
  color: #fff;
}
.wb-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(239, 238, 236, 0.72);
  font-size: 15px;
}
.wb-outline {
  height: 38px;
  padding: 0 18px;
  border: 1px solid var(--wb-green);
  border-radius: 4px;
  color: var(--wb-green) !important;
  display: flex;
  align-items: center;
  font-weight: 700;
}
.wb-outline:hover {
  background: rgba(40, 184, 148, 0.12);
}
.wb-menu {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 4px;
  width: 42px;
  height: 42px;
}
.wb-hero {
  position: relative;
  min-height: 850px;
  padding: 150px 0 90px;
  overflow: hidden;
}
.wb-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 78% 22%,
      rgba(40, 184, 148, 0.22),
      transparent 28%
    ),
    radial-gradient(
      circle at 20% 12%,
      rgba(125, 143, 255, 0.18),
      transparent 26%
    ),
    linear-gradient(180deg, #050505 0%, #000 78%);
  z-index: 0;
}
.wb-hero-bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.78;
  z-index: 1;
  pointer-events: none;
}
.wb-hero-bg-a {
  width: 420px;
  height: 420px;
  background: rgba(40, 184, 148, 0.16);
  right: 12%;
  top: 130px;
}
.wb-hero-bg-b {
  width: 360px;
  height: 360px;
  background: rgba(125, 143, 255, 0.12);
  left: 8%;
  bottom: 120px;
}
.wb-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1760px, 100%);
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.wb-hero-copy {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
.wb-kicker {
  margin: 0;
  color: #fff;
  font-size: clamp(16px, 2vw, 30px);
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.wb-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 5.8vw, 104px);
  line-height: 1.06;
  font-weight: 850;
  white-space: nowrap;
}
.wb-hero-desc {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
  font-size: clamp(14px, 1.15vw, 21px);
  line-height: 2;
  font-weight: 500;
  max-width: 980px;
}
.wb-hero-desc p {
  margin: 0;
  color: #fff;
}
.wb-hero-desc span {
  color: var(--wb-green-2);
}
.wb-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.wb-download {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 22px;
  border: 1px solid var(--wb-green);
  border-radius: 4px;
  color: var(--wb-green);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  transition: 0.2s ease;
}
.wb-download:hover {
  background: rgba(40, 184, 148, 0.13);
  transform: translateY(-1px);
}
.wb-download.secondary {
  border-color: rgba(239, 238, 236, 0.26);
  color: #fff;
  background: rgba(239, 238, 236, 0.06);
}
.wb-channel-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(760px, 100%);
  margin-top: 4px;
}
.wb-channel-row a {
  min-height: 72px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(239, 238, 236, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 18px;
  transition: 0.2s ease;
}
.wb-channel-row a:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.wb-channel-row b {
  font-size: 17px;
  color: #fff;
}
.wb-channel-row span {
  font-size: 13px;
  color: rgba(239, 238, 236, 0.58);
}
.wb-hero-visual {
  position: relative;
  flex: 0 1 780px;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wb-orb {
  position: absolute;
  top: 4%;
  right: 10%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle at 30% 20%,
    #fff,
    rgba(50, 230, 185, 0.85) 30%,
    rgba(40, 184, 148, 0.14) 65%,
    transparent
  );
  color: #06251d;
  font-weight: 900;
  font-size: 28px;
  box-shadow: 0 0 80px rgba(40, 184, 148, 0.4);
  z-index: 1;
}
.wb-desk {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  border: 1px solid rgba(239, 238, 236, 0.12);
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(25, 26, 35, 0.92),
    rgba(14, 15, 22, 0.92)
  );
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  padding: 18px;
  transform: rotate(-2deg);
}
.wb-desk-top {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(239, 238, 236, 0.62);
}
.wb-desk-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6b7d;
}
.wb-desk-top span:nth-child(2) {
  background: #ffc857;
}
.wb-desk-top span:nth-child(3) {
  background: #28b894;
}
.wb-desk-top strong {
  margin-left: auto;
  color: #fff;
  font-size: 13px;
}
.wb-task {
  padding: 20px;
  border-radius: 12px;
  background: #0a0a0a;
  border: 1px solid rgba(239, 238, 236, 0.08);
}
.wb-task small {
  display: block;
  color: rgba(239, 238, 236, 0.54);
  font-size: 13px;
}
.wb-task b {
  display: block;
  color: #fff;
  font-size: 24px;
  margin: 5px 0 14px;
}
.wb-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(239, 238, 236, 0.08);
  overflow: hidden;
}
.wb-progress i {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wb-green), var(--wb-green-2));
}
.wb-agent-cloud {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.wb-agent-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(239, 238, 236, 0.08);
}
.wb-agent-chip i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(40, 184, 148, 0.16);
  color: var(--wb-green-2);
  font-style: normal;
  font-weight: 900;
}
.wb-agent-chip b {
  display: block;
  color: #fff;
  font-size: 14px;
}
.wb-agent-chip em {
  display: block;
  color: rgba(239, 238, 236, 0.56);
  font-size: 12px;
  font-style: normal;
}
.wb-input {
  margin-top: 14px;
  border-radius: 10px;
  border: 1px solid rgba(40, 184, 148, 0.28);
  background: rgba(40, 184, 148, 0.08);
  color: #dffbf4;
  padding: 15px 16px;
}
.wb-highlights {
  position: relative;
  margin-top: -8px;
}
.wb-highlight-shell {
  width: min(1920px, 100%);
  margin: 0 auto;
  padding: 78px 80px 0;
  background: #191a23;
  border-radius: 80px 80px 0 0;
}
.wb-highlight-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 42px;
}
.wb-highlight-head p {
  margin: 0 0 14px;
  color: rgba(239, 238, 236, 0.66);
  font-size: 16px;
  letter-spacing: 0.08em;
}
.wb-highlight-head h2 {
  margin: 0;
  color: #28b894;
  font-size: clamp(36px, 4.6vw, 86px);
  line-height: 1;
  font-weight: 850;
}
.wb-highlight-lines {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  color: #d2d3e0;
  font-size: clamp(24px, 3vw, 56px);
  line-height: 1.22;
  font-weight: 800;
  white-space: nowrap;
}
.wb-product-shot {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 18px;
  padding: 12px;
  border-radius: 16px 16px 0 0;
  background: #0a0a0a;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(239, 238, 236, 0.08);
  border-bottom: 0;
}
.wb-product-shot aside {
  padding: 24px;
  border-radius: 10px;
  background: #111219;
  border: 1px solid rgba(239, 238, 236, 0.08);
}
.wb-product-shot aside b {
  display: block;
  margin-bottom: 18px;
}
.wb-product-shot aside p {
  margin: 0 0 12px;
  color: rgba(239, 238, 236, 0.66);
  font-size: 14px;
}
.wb-product-shot section {
  padding: 24px;
  border-radius: 10px;
  background: linear-gradient(180deg, #14151d, #0c0d12);
}
.wb-shot-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.wb-shot-toolbar span {
  font-weight: 800;
}
.wb-shot-toolbar button {
  border: 1px solid #28b894;
  background: transparent;
  color: #28b894;
  border-radius: 4px;
  padding: 8px 12px;
}
.wb-shot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.wb-shot-grid article {
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(239, 238, 236, 0.08);
}
.wb-shot-grid small {
  display: block;
  color: rgba(239, 238, 236, 0.54);
}
.wb-shot-grid strong {
  display: block;
  color: #fff;
  font-size: 44px;
  line-height: 1.1;
  margin: 8px 0;
}
.wb-shot-grid span {
  color: #28b894;
}
.wb-flow {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr;
  align-items: center;
  margin-top: 22px;
}
.wb-flow div {
  text-align: center;
  padding: 14px 10px;
  border-radius: 10px;
  background: rgba(40, 184, 148, 0.1);
  border: 1px solid rgba(40, 184, 148, 0.24);
  color: #dffbf4;
  font-weight: 800;
}
.wb-flow i {
  height: 1px;
  background: rgba(40, 184, 148, 0.5);
}
.wb-scenarios {
  padding: 110px 80px 120px;
  width: min(1760px, 100%);
  margin: 0 auto;
}
.wb-section-title {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 58px;
}
.wb-section-title h2 {
  font-size: clamp(36px, 4.2vw, 80px);
  line-height: 1.05;
  color: #fff;
}
.wb-section-title p {
  font-size: 20px;
  line-height: 1.9;
  color: rgba(239, 238, 236, 0.66);
  margin: 22px 0 0;
}
.wb-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.wb-feature-grid a {
  min-height: 260px;
  padding: 34px;
  border-radius: 20px;
  background: #191a23;
  border: 1px solid rgba(239, 238, 236, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: 0.25s ease;
}
.wb-feature-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(50, 230, 185, 0.36);
}
.wb-feature-grid span {
  color: #28b894;
  font-weight: 900;
}
.wb-feature-grid h3 {
  font-size: 28px;
  color: #efeeec;
}
.wb-feature-grid p {
  margin: 0;
  color: rgba(239, 238, 236, 0.62);
  font-size: 16px;
  line-height: 1.75;
}
@media (max-width: 1200px) {
  .wb-header {
    padding: 0 24px;
  }
  .wb-menu {
    display: grid;
    place-items: center;
    margin-left: auto;
  }
  .wb-nav,
  .wb-actions {
    display: none;
  }
  .wb-nav.open {
    display: flex;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 70px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(18, 19, 26, 0.96);
    border: 1px solid rgba(239, 238, 236, 0.12);
    border-radius: 8px;
  }
  .wb-nav.open a {
    padding: 12px;
  }
  .wb-hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 0 30px;
  }
  .wb-hero h1 {
    white-space: normal;
  }
  .wb-cta,
  .wb-channel-row {
    margin-left: auto;
    margin-right: auto;
  }
  .wb-highlight-head {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .wb-highlight-lines {
    align-items: center;
  }
  .wb-product-shot {
    grid-template-columns: 1fr;
  }
  .wb-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .wb-header {
    height: 68px;
  }
  .wb-hero {
    padding: 110px 0 58px;
    min-height: auto;
  }
  .wb-hero-inner {
    padding: 0 18px;
  }
  .wb-kicker {
    font-size: 14px;
  }
  .wb-hero h1 {
    font-size: 44px;
  }
  .wb-hero-desc {
    font-size: 15px;
    line-height: 1.75;
  }
  .wb-cta {
    flex-direction: column;
    width: 100%;
  }
  .wb-download {
    width: 100%;
    height: 46px;
    font-size: 16px;
  }
  .wb-channel-row {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .wb-hero-visual {
    min-height: auto;
    width: 100%;
    margin-top: 20px;
  }
  .wb-orb {
    display: none;
  }
  .wb-desk {
    transform: none;
  }
  .wb-agent-cloud {
    grid-template-columns: 1fr;
  }
  .wb-highlight-shell {
    border-radius: 28px 28px 0 0;
    padding: 34px 18px 0;
  }
  .wb-highlight-lines {
    font-size: 28px;
  }
  .wb-shot-grid,
  .wb-feature-grid {
    grid-template-columns: 1fr;
  }
  .wb-flow {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .wb-flow i {
    height: 18px;
    width: 1px;
    margin: 0 auto;
  }
  .wb-scenarios {
    padding: 64px 18px 78px;
  }
  .wb-section-title p {
    font-size: 16px;
  }
  .wb-feature-grid a {
    min-height: auto;
    padding: 24px;
  }
  .wb-feature-grid h3 {
    font-size: 23px;
  }
}

/* WorkBuddy-inspired subpages */
.wb-subpage {
  background: #000;
  color: #efeeec;
}
.wb-subpage .wb-page {
  min-height: 100vh;
  background: #000;
}
.wb-sub-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 170px 24px 96px;
  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(40, 184, 148, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at 22% 8%,
      rgba(125, 143, 255, 0.14),
      transparent 25%
    ),
    #000;
}
.wb-sub-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  pointer-events: none;
}
.wb-sub-orb.orb-a {
  width: 360px;
  height: 360px;
  background: rgba(40, 184, 148, 0.12);
  right: 12%;
  top: 120px;
}
.wb-sub-orb.orb-b {
  width: 280px;
  height: 280px;
  background: rgba(125, 143, 255, 0.1);
  left: 14%;
  bottom: 30px;
}
.wb-sub-hero > p {
  position: relative;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(15px, 2vw, 28px);
  font-weight: 300;
  letter-spacing: 0.08em;
}
.wb-sub-hero h1 {
  position: relative;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(44px, 5.5vw, 96px);
  line-height: 1.06;
  font-weight: 850;
}
.wb-sub-desc {
  position: relative;
  max-width: 920px;
  margin: 24px auto 0;
  color: #efeeec;
  font-size: clamp(16px, 1.2vw, 22px);
  line-height: 1.9;
}
.wb-sub-actions {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.wb-content-section {
  width: min(1760px, 100%);
  margin: 0 auto;
  padding: 96px 80px;
}
.wb-content-band {
  width: min(1920px, 100%);
  margin: 0 auto;
  padding: 78px 80px 64px;
  background: #191a23;
  border-radius: 80px 80px 0 0;
}
.wb-content-band + .wb-content-band {
  border-radius: 0;
  margin-top: -2px;
  padding-top: 52px;
  border-top: 1px solid rgba(239, 238, 236, 0.04);
  background: linear-gradient(180deg, #1c1d2a, #191a23);
}
.wb-band-head {
  text-align: center;
  margin-bottom: 42px;
}
.wb-band-head p,
.wb-panel-kicker {
  margin: 0 0 14px;
  color: #28b894;
  letter-spacing: 0.12em;
  font-size: clamp(13px, 1.1vw, 17px);
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(40, 184, 148, 0.15);
}
.wb-band-head h2,
.wb-section-title h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 4.2vw, 80px);
  line-height: 1.05;
}
.wb-section-title {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 54px;
}
.wb-section-title p {
  font-size: 19px;
  line-height: 1.9;
  color: rgba(239, 238, 236, 0.66);
  margin: 20px 0 0;
}
.wb-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.wb-feature-card,
.wb-feature-grid > a {
  min-height: 248px;
  padding: 34px;
  border-radius: 20px;
  background: #191a23;
  border: 1px solid rgba(239, 238, 236, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: 0.25s ease;
  color: #efeeec;
}
.wb-feature-card:hover,
.wb-feature-grid > a:hover {
  transform: translateY(-4px);
  border-color: rgba(50, 230, 185, 0.36);
}
.wb-feature-card span,
.wb-feature-grid > a span {
  color: #28b894;
  font-weight: 900;
}
.wb-feature-card h3,
.wb-feature-grid > a h3 {
  font-size: 28px;
  color: #efeeec;
}
.wb-feature-card p,
.wb-feature-grid > a p {
  margin: 0;
  color: rgba(239, 238, 236, 0.62);
  font-size: 16px;
  line-height: 1.75;
}
.wb-feature-card em,
.wb-feature-grid > a em {
  margin-top: auto;
  color: #28b894;
  font-style: normal;
  font-weight: 800;
}
.wb-expert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.wb-expert-card {
  padding: 26px;
  border-radius: 20px;
  background: #191a23;
  border: 1px solid rgba(239, 238, 236, 0.08);
}
.wb-expert-card i {
  display: block;
  color: #28b894;
  font-style: normal;
  font-weight: 900;
  margin-bottom: 18px;
}
.wb-expert-card h3 {
  font-size: 24px;
}
.wb-expert-card strong {
  display: block;
  color: #28b894;
  margin: 8px 0 12px;
}
.wb-expert-card p {
  margin: 0;
  color: rgba(239, 238, 236, 0.62);
  line-height: 1.75;
}
.wb-timeline {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.wb-timeline div {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  padding: 18px 22px;
  border-radius: 12px;
  background: #0f1017;
  border: 1px solid rgba(239, 238, 236, 0.08);
}
.wb-timeline b {
  color: #28b894;
}
.wb-timeline span {
  color: #efeeec;
}
.wb-filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.wb-filter-row button,
.wb-tabs button {
  border: 1px solid rgba(239, 238, 236, 0.12);
  background: #191a23;
  color: rgba(239, 238, 236, 0.7);
  border-radius: 4px;
  padding: 11px 16px;
}
.wb-filter-row button:first-child,
.wb-tabs button:first-child {
  border-color: #28b894;
  color: #28b894;
}
.wb-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.wb-panel,
.wb-console-preview,
.wb-search-stage form,
.wb-mini-grid article,
.wb-step-grid article,
.wb-news-card,
.wb-faq-grid article {
  border-radius: 20px;
  background: #191a23;
  border: 1px solid rgba(239, 238, 236, 0.08);
  padding: 34px;
}
.wb-panel h2 {
  font-size: 44px;
  margin-bottom: 22px;
}
.wb-check {
  position: relative;
  padding-left: 24px;
  color: rgba(239, 238, 236, 0.72);
  line-height: 1.8;
}
.wb-check:before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28b894;
}
.wb-console-preview > div:first-child {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
}
.wb-console-preview span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6b7d;
}
.wb-console-preview span:nth-child(2) {
  background: #ffc857;
}
.wb-console-preview span:nth-child(3) {
  background: #28b894;
}
.wb-console-preview b {
  margin-left: auto;
}
.wb-console-preview section {
  padding: 28px;
  border-radius: 14px;
  background: #0a0a0a;
}
.wb-console-preview small {
  color: rgba(239, 238, 236, 0.54);
}
.wb-console-preview strong {
  display: block;
  margin: 8px 0 16px;
  font-size: 28px;
}
.wb-console-preview p {
  color: rgba(239, 238, 236, 0.64);
}
.wb-search-stage {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 24px 100px;
}
.wb-search-stage form {
  margin-top: -36px;
  position: relative;
  z-index: 2;
}
.wb-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.wb-search-box {
  display: flex;
  gap: 12px;
}
.wb-search-box input,
.wb-login input,
select {
  min-height: 52px;
  border: 1px solid rgba(239, 238, 236, 0.12);
  background: #0f1017;
  color: #fff;
  border-radius: 4px;
  padding: 0 16px;
  font: inherit;
}
.wb-search-box input {
  flex: 1;
}
.wb-search-box button,
.wb-login button,
.wb-console-button {
  border: 1px solid #28b894;
  background: transparent;
  color: #28b894;
  border-radius: 4px;
  padding: 0 22px;
  font-weight: 800;
}
.wb-mini-grid,
.wb-step-grid,
.wb-price-grid,
.wb-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}
.wb-mini-grid h3,
.wb-step-grid h3 {
  font-size: 24px;
}
.wb-mini-grid p,
.wb-step-grid p {
  color: rgba(239, 238, 236, 0.62);
}
.wb-step-grid b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #28b894;
  color: #001b14;
  margin-bottom: 20px;
}
.wb-table-wrap {
  overflow: auto;
  border-radius: 16px;
  border: 1px solid rgba(239, 238, 236, 0.08);
  background: #111219;
}
.wb-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}
.wb-table-wrap th,
.wb-table-wrap td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(239, 238, 236, 0.08);
  text-align: left;
  color: rgba(239, 238, 236, 0.76);
}
.wb-table-wrap th {
  color: #fff;
  background: #191a23;
}
.wb-table-wrap a,
.wb-text-btn {
  color: #28b894;
}
.wb-score {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(40, 184, 148, 0.12);
  color: #32e6b9;
}
.wb-action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 22px;
}
.wb-action-grid a {
  padding: 20px;
  border-radius: 12px;
  background: #191a23;
  border: 1px solid rgba(239, 238, 236, 0.08);
  text-align: center;
  color: #efeeec;
}
.wb-console-body .wb-header,
.wb-console-body .wb-footer {
  display: none;
}
.wb-console-shell {
  display: grid;
  grid-template-columns: 270px 1fr;
  min-height: 100vh;
}
.wb-console-side {
  padding: 26px 18px;
  background: #111219;
  border-right: 1px solid rgba(239, 238, 236, 0.08);
}
.wb-console-side .wb-brand {
  margin-bottom: 28px;
}
.wb-console-side > a:not(.wb-brand) {
  display: block;
  padding: 13px 14px;
  border-radius: 8px;
  color: rgba(239, 238, 236, 0.62);
  margin-bottom: 6px;
}
.wb-console-side > a.active,
.wb-console-side > a:hover {
  background: rgba(40, 184, 148, 0.1);
  color: #28b894;
}
.wb-console-main {
  padding: 36px;
}
.wb-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}
.wb-console-head h1 {
  font-size: 44px;
}
.wb-stat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.wb-stat-grid article {
  padding: 24px;
  border-radius: 16px;
  background: #191a23;
  border: 1px solid rgba(239, 238, 236, 0.08);
}
.wb-stat-grid span {
  color: rgba(239, 238, 236, 0.58);
}
.wb-stat-grid strong {
  display: block;
  font-size: 36px;
  margin-top: 8px;
}
.wb-chart {
  margin-top: 20px;
  padding: 28px;
  border-radius: 16px;
  background: #191a23;
  border: 1px solid rgba(239, 238, 236, 0.08);
}
.wb-chart > div {
  height: 270px;
  display: flex;
  align-items: end;
  gap: 12px;
}
.wb-chart i {
  flex: 1;
  background: linear-gradient(180deg, #32e6b9, #28b894);
  border-radius: 8px 8px 0 0;
}
.wb-text-btn {
  background: none;
  border: 0;
  margin-right: 10px;
  cursor: pointer;
}
.wb-text-btn.danger {
  color: #ff6b7d;
}
.wb-pill {
  border: 1px solid rgba(40, 184, 148, 0.35);
  color: #28b894;
  border-radius: 999px;
  padding: 7px 12px;
}
.wb-docs {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0 24px 100px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
}
.wb-docs aside {
  position: sticky;
  top: 96px;
  align-self: start;
  border-radius: 16px;
  background: #191a23;
  border: 1px solid rgba(239, 238, 236, 0.08);
  padding: 16px;
}
.wb-docs aside a {
  display: block;
  padding: 10px;
  color: rgba(239, 238, 236, 0.64);
}
.wb-docs article {
  border-radius: 20px;
  background: #191a23;
  border: 1px solid rgba(239, 238, 236, 0.08);
  padding: 34px;
}
.wb-docs h2 {
  font-size: 30px;
  margin: 28px 0 12px;
}
.wb-docs p {
  color: rgba(239, 238, 236, 0.66);
}
.wb-docs pre {
  background: #0a0a0a;
  border: 1px solid rgba(239, 238, 236, 0.08);
  border-radius: 10px;
  padding: 16px;
  color: #dffbf4;
  overflow: auto;
  white-space: pre-wrap;
}
.wb-news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.wb-news-card span,
.wb-article > span {
  color: #28b894;
}
.wb-news-card h3 {
  font-size: 22px;
  margin: 12px 0;
}
.wb-news-card p {
  color: rgba(239, 238, 236, 0.62);
}
.wb-news-card div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.wb-news-card a {
  color: #28b894;
}
.wb-article {
  max-width: 920px;
  margin: 0 auto;
  padding: 170px 24px 120px;
}
.wb-article h1 {
  font-size: clamp(42px, 4.6vw, 74px);
  line-height: 1.12;
  margin: 18px 0;
  color: #fff;
}
.wb-article p {
  font-size: 19px;
  line-height: 1.9;
  color: rgba(239, 238, 236, 0.72);
}
.wb-article .meta {
  color: #28b894;
}
.wb-price-grid article {
  padding: 34px;
  border-radius: 20px;
  background: #191a23;
  border: 1px solid rgba(239, 238, 236, 0.08);
}
.wb-price-grid article.featured {
  border-color: rgba(40, 184, 148, 0.5);
  box-shadow: 0 0 40px rgba(40, 184, 148, 0.12);
}
.wb-price-grid h3 {
  font-size: 26px;
}
.wb-price-grid strong {
  display: block;
  font-size: 42px;
  margin: 16px 0;
}
.wb-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 100px 20px;
}
.wb-login form {
  width: min(460px, 100%);
  padding: 34px;
  border-radius: 20px;
  background: #191a23;
  border: 1px solid rgba(239, 238, 236, 0.08);
}
.wb-login h1 {
  font-size: 42px;
  margin: 28px 0 10px;
}
.wb-login p {
  color: rgba(239, 238, 236, 0.62);
}
.wb-login label {
  display: block;
  margin: 14px 0 7px;
}
.wb-login input {
  width: 100%;
}
.wb-login button {
  width: 100%;
  height: 52px;
  margin: 22px 0 12px;
}
.wb-footer {
  width: min(1760px, 100%);
  margin: 0 auto;
  padding: 54px 80px;
  border-top: 1px solid rgba(239, 238, 236, 0.08);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}
.wb-footer p,
.wb-footer a,
.wb-footer span {
  display: block;
  color: rgba(239, 238, 236, 0.56);
  margin: 8px 0;
}
.wb-footer h4 {
  margin: 0 0 12px;
}
@media (max-width: 1200px) {
  .wb-content-section,
  .wb-content-band,
  .wb-scenarios,
  .wb-footer {
    padding-left: 28px;
    padding-right: 28px;
  }
  .wb-feature-grid,
  .wb-expert-grid,
  .wb-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wb-two-col,
  .wb-docs,
  .wb-console-shell {
    grid-template-columns: 1fr;
  }
  .wb-console-side {
    position: relative;
  }
  .wb-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wb-footer {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .wb-sub-hero {
    padding: 118px 18px 64px;
  }
  .wb-sub-hero h1 {
    font-size: 42px;
  }
  .wb-content-section,
  .wb-content-band {
    padding: 58px 18px;
  }
  .wb-content-band {
    border-radius: 28px 28px 0 0;
  }
  .wb-feature-grid,
  .wb-expert-grid,
  .wb-mini-grid,
  .wb-step-grid,
  .wb-news-grid,
  .wb-price-grid,
  .wb-faq-grid,
  .wb-action-grid,
  .wb-stat-grid {
    grid-template-columns: 1fr;
  }
  .wb-two-col {
    padding-top: 58px;
  }
  .wb-timeline div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .wb-search-box,
  .wb-tabs,
  .wb-sub-actions {
    flex-direction: column;
  }
  .wb-search-box button,
  .wb-search-box input {
    width: 100%;
    height: 52px;
  }
  .wb-console-main {
    padding: 22px;
  }
  .wb-console-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .wb-docs {
    display: block;
    padding-bottom: 58px;
  }
  .wb-docs aside {
    position: relative;
    top: 0;
    margin-bottom: 18px;
  }
  .wb-footer {
    grid-template-columns: 1fr;
    padding: 42px 18px;
  }
  .wb-table-wrap {
    margin-left: -18px;
    margin-right: -18px;
    border-radius: 0;
  }
}

/* Skill market page */
.wb-skills-page .wb-page {
  background:
    radial-gradient(
      circle at 76px 210px,
      rgba(125, 143, 255, 0.12),
      transparent 300px
    ),
    radial-gradient(
      circle at 84% 180px,
      rgba(40, 184, 148, 0.16),
      transparent 360px
    ),
    #000;
}
.wb-skill-hero {
  position: relative;
  overflow: hidden;
  padding: 178px 80px 86px;
}
.wb-skill-hero:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 360px;
  background: linear-gradient(180deg, rgba(40, 184, 148, 0.12), transparent);
  pointer-events: none;
}
.wb-skill-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1760px, 100%);
  margin: 0 auto;
}
.wb-skill-kicker {
  margin: 0 0 22px;
  color: #efeeec;
  font-size: clamp(18px, 1.6vw, 28px);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wb-skill-hero h1 {
  max-width: 1120px;
  color: #fff;
  font-size: clamp(56px, 6.8vw, 118px);
  line-height: 1.02;
  font-weight: 850;
}
.wb-skill-desc {
  max-width: 980px;
  margin-top: 28px;
  color: rgba(239, 238, 236, 0.74);
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.86;
}
.wb-skill-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.wb-skill-overview {
  width: min(1760px, 100%);
  margin: 0 auto;
  padding: 0 80px 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.wb-skill-overview article {
  min-height: 144px;
  padding: 24px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(239, 238, 236, 0.09),
    rgba(239, 238, 236, 0.035)
  );
  border: 1px solid rgba(239, 238, 236, 0.08);
}
.wb-skill-overview span {
  display: block;
  color: rgba(239, 238, 236, 0.58);
  font-size: 14px;
}
.wb-skill-overview strong {
  display: block;
  margin: 9px 0 6px;
  color: #fff;
  font-size: clamp(28px, 2.4vw, 42px);
  line-height: 1.1;
}
.wb-skill-overview p {
  margin: 0;
  color: rgba(239, 238, 236, 0.62);
}
.wb-skill-market {
  width: min(1760px, 100%);
  margin: 0 auto;
  padding: 42px 80px 86px;
}
.wb-skill-market-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}
.wb-skill-market-head p,
.wb-skill-flow .wb-section-title p,
.wb-skill-cta p {
  margin: 0 0 10px;
  color: rgba(239, 238, 236, 0.54);
  letter-spacing: 0.1em;
  font-size: 14px;
}
.wb-skill-market-head h2 {
  color: #fff;
  font-size: clamp(38px, 4.6vw, 82px);
  line-height: 1.05;
}
.wb-skill-search {
  width: min(560px, 100%);
  height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-radius: 8px;
  background: #111219;
  border: 1px solid rgba(239, 238, 236, 0.12);
}
.wb-skill-search svg {
  flex: 0 0 auto;
  color: rgba(239, 238, 236, 0.58);
}
.wb-skill-search input {
  min-height: 0;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
}
.wb-skill-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}
.wb-skill-tabs button {
  border: 1px solid rgba(239, 238, 236, 0.12);
  background: #111219;
  color: rgba(239, 238, 236, 0.68);
  border-radius: 6px;
  padding: 10px 16px;
  font: inherit;
  cursor: pointer;
}
.wb-skill-tabs button.active,
.wb-skill-tabs button:hover {
  border-color: rgba(40, 184, 148, 0.7);
  color: #32e6b9;
  background: rgba(40, 184, 148, 0.08);
}
.wb-skill-list {
  border-top: 1px solid rgba(239, 238, 236, 0.1);
}
.wb-skill-row {
  display: grid;
  grid-template-columns: 56px minmax(340px, 1fr) 190px 220px 132px;
  gap: 26px;
  align-items: center;
  padding: 24px 8px;
  border-bottom: 1px solid rgba(239, 238, 236, 0.1);
  transition: 0.22s ease;
}
.wb-skill-row:hover {
  background: linear-gradient(
    90deg,
    rgba(40, 184, 148, 0.065),
    transparent 72%
  );
}
.wb-skill-row[hidden] {
  display: none;
}
.wb-skill-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #111219;
  border: 1px solid rgba(50, 230, 185, 0.24);
  color: #32e6b9;
  font-weight: 900;
  font-size: 22px;
  box-shadow: 0 0 22px rgba(40, 184, 148, 0.08);
}
.wb-skill-title {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.wb-skill-title h3 {
  font-size: 24px;
  color: #fff;
}
.wb-skill-title span {
  color: rgba(239, 238, 236, 0.48);
  font-size: 14px;
}
.wb-skill-main p {
  margin: 8px 0 12px;
  color: rgba(239, 238, 236, 0.66);
  line-height: 1.7;
}
.wb-skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.wb-skill-tags span {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(239, 238, 236, 0.06);
  border: 1px solid rgba(239, 238, 236, 0.08);
  color: rgba(239, 238, 236, 0.64);
  font-size: 12px;
}
.wb-skill-meta span {
  display: block;
  color: rgba(239, 238, 236, 0.44);
  font-size: 13px;
}
.wb-skill-meta b {
  display: block;
  margin-top: 4px;
  color: rgba(239, 238, 236, 0.84);
  font-size: 15px;
  line-height: 1.55;
}
.wb-skill-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.wb-skill-action a,
.wb-skill-action button {
  min-height: 34px;
  border-radius: 4px;
  font-weight: 800;
}
.wb-skill-action a {
  display: inline-flex;
  align-items: center;
  color: #32e6b9;
}
.wb-skill-action button {
  border: 1px solid rgba(40, 184, 148, 0.36);
  background: rgba(40, 184, 148, 0.06);
  color: #28b894;
  padding: 0 12px;
  cursor: pointer;
}
.wb-skill-action button.copied {
  color: #001b14;
  background: #32e6b9;
}
.wb-skill-row.is-coming {
  opacity: 0.78;
}
.wb-skill-flow {
  width: min(1760px, 100%);
  margin: 0 auto;
  padding: 76px 80px 96px;
  background: #191a23;
  border-radius: 80px 80px 0 0;
}
.wb-skill-flow .wb-section-title {
  text-align: left;
  margin: 0 0 36px;
  max-width: 1040px;
}
.wb-skill-flow-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.wb-skill-flow-track article {
  position: relative;
  min-height: 186px;
  padding: 24px;
  border-radius: 14px;
  background: #101117;
  border: 1px solid rgba(239, 238, 236, 0.08);
}
.wb-skill-flow-track article:not(:last-child):after {
  content: "";
  position: absolute;
  right: -11px;
  top: 48px;
  width: 20px;
  height: 1px;
  background: #28b894;
}
.wb-skill-flow-track span {
  display: block;
  color: #28b894;
  font-weight: 900;
  margin-bottom: 18px;
}
.wb-skill-flow-track b {
  display: block;
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}
.wb-skill-flow-track p {
  margin: 0;
  color: rgba(239, 238, 236, 0.62);
}
.wb-skill-cta {
  width: min(1760px, 100%);
  margin: 0 auto;
  padding: 86px 80px 106px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
}
.wb-skill-cta h2 {
  color: #fff;
  font-size: clamp(40px, 5vw, 92px);
  line-height: 1.05;
  max-width: 980px;
}
.wb-skill-cta span {
  display: block;
  max-width: 920px;
  margin-top: 22px;
  color: rgba(239, 238, 236, 0.68);
  font-size: 18px;
  line-height: 1.86;
}
.wb-skill-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .wb-skill-hero,
  .wb-skill-overview,
  .wb-skill-market,
  .wb-skill-flow,
  .wb-skill-cta {
    padding-left: 28px;
    padding-right: 28px;
  }
  .wb-skill-overview {
    grid-template-columns: repeat(2, 1fr);
  }
  .wb-skill-market-head,
  .wb-skill-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .wb-skill-row {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }
  .wb-skill-meta,
  .wb-skill-action {
    grid-column: 2;
  }
  .wb-skill-action {
    flex-direction: row;
    align-items: center;
  }
  .wb-skill-flow-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .wb-skill-flow-track article:not(:last-child):after {
    display: none;
  }
}
@media (max-width: 720px) {
  .wb-skill-hero {
    padding: 122px 18px 58px;
  }
  .wb-skill-hero h1 {
    font-size: 44px;
  }
  .wb-skill-desc {
    font-size: 16px;
    line-height: 1.78;
  }
  .wb-skill-actions,
  .wb-skill-cta-actions {
    width: 100%;
    flex-direction: column;
  }
  .wb-skill-overview,
  .wb-skill-market,
  .wb-skill-flow,
  .wb-skill-cta {
    padding-left: 18px;
    padding-right: 18px;
  }
  .wb-skill-overview,
  .wb-skill-flow-track {
    grid-template-columns: 1fr;
  }
  .wb-skill-market {
    padding-top: 30px;
  }
  .wb-skill-market-head {
    gap: 18px;
  }
  .wb-skill-search {
    width: 100%;
  }
  .wb-skill-row {
    grid-template-columns: 44px 1fr;
    padding: 20px 0;
    gap: 12px;
  }
  .wb-skill-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 18px;
  }
  .wb-skill-title h3 {
    font-size: 20px;
  }
  .wb-skill-title span {
    font-size: 12px;
  }
  .wb-skill-main p {
    font-size: 14px;
  }
  .wb-skill-meta b {
    font-size: 14px;
  }
  .wb-skill-action {
    flex-wrap: wrap;
  }
  .wb-skill-flow {
    border-radius: 32px 32px 0 0;
    padding-top: 52px;
    padding-bottom: 64px;
  }
  .wb-skill-cta {
    padding-top: 58px;
    padding-bottom: 72px;
  }
}

/* Customs data acquisition pages */
.wb-customs-page .wb-page {
  background:
    radial-gradient(
      circle at 18% 200px,
      rgba(125, 143, 255, 0.14),
      transparent 330px
    ),
    radial-gradient(
      circle at 86% 160px,
      rgba(40, 184, 148, 0.18),
      transparent 390px
    ),
    #000;
}
.wb-customs-hero {
  position: relative;
  overflow: hidden;
  padding: 148px 80px 76px;
}
.wb-customs-hero:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 360px;
  background: linear-gradient(180deg, rgba(40, 184, 148, 0.12), transparent);
  pointer-events: none;
}
.wb-customs-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  pointer-events: none;
}
.wb-customs-glow.glow-a {
  width: 380px;
  height: 380px;
  right: 10%;
  top: 120px;
  background: rgba(40, 184, 148, 0.16);
}
.wb-customs-glow.glow-b {
  width: 320px;
  height: 320px;
  left: 6%;
  bottom: 30px;
  background: rgba(125, 143, 255, 0.1);
}
.wb-customs-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1760px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1fr);
  gap: 48px;
  align-items: center;
}
.wb-customs-kicker {
  margin: 0 0 18px;
  color: #efeeec;
  font-size: clamp(16px, 1.35vw, 24px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.wb-customs-copy h1 {
  color: #fff;
  font-size: clamp(54px, 5.9vw, 104px);
  line-height: 1.03;
  font-weight: 850;
}
.wb-customs-desc {
  max-width: 860px;
  margin-top: 24px;
  color: rgba(239, 238, 236, 0.76);
  font-size: clamp(18px, 1.22vw, 23px);
  line-height: 1.86;
}
.wb-customs-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.wb-customs-benefits span {
  border: 1px solid rgba(40, 184, 148, 0.3);
  background: rgba(40, 184, 148, 0.08);
  color: #32e6b9;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 14px;
}
.wb-customs-search {
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(25, 26, 35, 0.96),
    rgba(17, 18, 25, 0.96)
  );
  border: 1px solid rgba(239, 238, 236, 0.1);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  padding: 28px;
}
.wb-customs-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.wb-customs-tabs button {
  flex: 1;
  min-height: 44px;
  border: 1px solid rgba(239, 238, 236, 0.12);
  background: #0f1017;
  color: rgba(239, 238, 236, 0.68);
  border-radius: 6px;
  font: inherit;
  cursor: pointer;
}
.wb-customs-tabs button.active,
.wb-customs-tabs button:hover {
  border-color: #28b894;
  color: #32e6b9;
  background: rgba(40, 184, 148, 0.08);
}
.wb-customs-searchbox {
  display: grid;
  grid-template-columns: 24px 1fr 128px;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 0 10px 0 18px;
  border-radius: 10px;
  background: #070808;
  border: 1px solid rgba(40, 184, 148, 0.34);
  box-shadow: 0 0 26px rgba(40, 184, 148, 0.08);
}
.wb-customs-searchbox svg {
  color: rgba(239, 238, 236, 0.58);
}
.wb-customs-searchbox input {
  height: 62px;
  min-height: 0;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0;
}
.wb-customs-searchbox button,
.wb-results-search button {
  height: 44px;
  border: 1px solid #28b894;
  background: #28b894;
  color: #001b14;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}
.wb-customs-examples {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  color: rgba(239, 238, 236, 0.5);
}
.wb-customs-examples button {
  border: 1px solid rgba(239, 238, 236, 0.1);
  background: rgba(239, 238, 236, 0.05);
  color: rgba(239, 238, 236, 0.78);
  border-radius: 999px;
  padding: 6px 10px;
  cursor: pointer;
}
.wb-customs-examples button:hover {
  color: #32e6b9;
  border-color: rgba(40, 184, 148, 0.42);
}
.wb-customs-advanced {
  margin-top: 18px;
  border-top: 1px solid rgba(239, 238, 236, 0.08);
  padding-top: 16px;
}
.wb-customs-advanced summary {
  cursor: pointer;
  color: #32e6b9;
  font-weight: 800;
}
.wb-customs-filter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.wb-customs-filter-grid label {
  display: grid;
  gap: 7px;
  color: rgba(239, 238, 236, 0.62);
  font-size: 14px;
}
.wb-customs-filter-grid input,
.wb-customs-filter-grid select {
  height: 46px;
  min-height: 0;
  background: #0f1017;
  border: 1px solid rgba(239, 238, 236, 0.12);
  border-radius: 6px;
  color: #fff;
}
.wb-customs-unlock {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  padding: 14px;
  border-radius: 10px;
  background: rgba(40, 184, 148, 0.07);
  border: 1px solid rgba(40, 184, 148, 0.2);
}
.wb-customs-unlock b {
  color: #fff;
}
.wb-customs-unlock span {
  color: rgba(239, 238, 236, 0.62);
}
.wb-customs-unlock a {
  color: #32e6b9;
  font-weight: 900;
}
.wb-customs-preview,
.wb-customs-next,
.wb-results-layout,
.wb-results-summary,
.wb-results-next {
  width: min(1760px, 100%);
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
}
.wb-customs-preview {
  padding-top: 20px;
  padding-bottom: 76px;
}
.wb-customs-panel {
  padding: 28px;
  border-radius: 24px;
  background: #191a23;
  border: 1px solid rgba(239, 238, 236, 0.08);
}
.wb-customs-panel-head,
.wb-results-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.wb-customs-panel-head p,
.wb-results-toolbar p {
  margin: 0 0 10px;
  color: rgba(239, 238, 236, 0.54);
  letter-spacing: 0.1em;
}
.wb-customs-panel-head h2,
.wb-results-toolbar h2 {
  font-size: clamp(32px, 3.5vw, 64px);
  color: #fff;
}
.wb-customs-panel-head a,
.wb-results-toolbar a {
  color: #32e6b9;
  font-weight: 800;
}
.wb-customs-table,
.wb-results-table {
  overflow: auto;
  border-radius: 14px;
  border: 1px solid rgba(239, 238, 236, 0.08);
  background: #101117;
}
.wb-customs-table table,
.wb-results-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}
.wb-customs-table th,
.wb-customs-table td,
.wb-results-table th,
.wb-results-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(239, 238, 236, 0.08);
  text-align: left;
  color: rgba(239, 238, 236, 0.76);
}
.wb-customs-table th,
.wb-results-table th {
  color: #fff;
  background: #151720;
}
.wb-customs-table span {
  display: inline-flex;
  color: #32e6b9;
  border: 1px solid rgba(40, 184, 148, 0.28);
  border-radius: 999px;
  padding: 3px 8px;
}
.wb-customs-next {
  padding-top: 76px;
  padding-bottom: 92px;
}
.wb-customs-action-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.wb-customs-action-flow article {
  min-height: 260px;
  padding: 26px;
  border-radius: 16px;
  background: #191a23;
  border: 1px solid rgba(239, 238, 236, 0.08);
}
.wb-customs-action-flow span {
  color: #28b894;
  font-weight: 900;
}
.wb-customs-action-flow h3 {
  font-size: 24px;
  margin: 18px 0 10px;
}
.wb-customs-action-flow p {
  color: rgba(239, 238, 236, 0.62);
}
.wb-customs-action-flow a {
  display: inline-flex;
  margin-top: 12px;
  color: #32e6b9;
  font-weight: 900;
}
.wb-customs-agent-cta {
  width: min(1760px, 100%);
  margin: 0 auto 30px;
  padding: 72px 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  background: #191a23;
  border-radius: 80px 80px 0 0;
}
.wb-customs-agent-cta p {
  margin: 0 0 12px;
  color: rgba(239, 238, 236, 0.54);
  letter-spacing: 0.1em;
}
.wb-customs-agent-cta h2 {
  font-size: clamp(40px, 5vw, 88px);
  color: #fff;
  line-height: 1.05;
  max-width: 1100px;
}
.wb-customs-agent-cta span {
  display: block;
  max-width: 960px;
  margin-top: 20px;
  color: rgba(239, 238, 236, 0.66);
  font-size: 18px;
  line-height: 1.86;
}
.wb-customs-agent-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.wb-results-hero {
  width: min(1760px, 100%);
  margin: 0 auto;
  padding: 150px 80px 44px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 34px;
}
.wb-results-hero p {
  margin: 0 0 14px;
  color: rgba(239, 238, 236, 0.54);
  letter-spacing: 0.1em;
}
.wb-results-hero h1 {
  font-size: clamp(46px, 5vw, 88px);
  color: #fff;
  line-height: 1.05;
}
.wb-results-hero span {
  display: block;
  max-width: 920px;
  margin-top: 18px;
  color: rgba(239, 238, 236, 0.68);
  font-size: 18px;
  line-height: 1.8;
}
.wb-results-search {
  display: flex;
  gap: 10px;
  width: min(520px, 100%);
}
.wb-results-search input {
  height: 50px;
  min-height: 0;
  background: #111219;
  border: 1px solid rgba(239, 238, 236, 0.12);
  border-radius: 6px;
  color: #fff;
}
.wb-results-search button {
  padding: 0 18px;
}
.wb-results-summary {
  padding-top: 16px;
  padding-bottom: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.wb-results-summary article {
  padding: 22px;
  border-radius: 14px;
  background: #191a23;
  border: 1px solid rgba(239, 238, 236, 0.08);
}
.wb-results-summary article.is-ai {
  border-color: rgba(40, 184, 148, 0.34);
  background: linear-gradient(
    135deg,
    rgba(40, 184, 148, 0.12),
    rgba(25, 26, 35, 0.96)
  );
}
.wb-results-summary span {
  color: rgba(239, 238, 236, 0.54);
}
.wb-results-summary strong {
  display: block;
  margin: 8px 0;
  color: #fff;
  font-size: clamp(24px, 2vw, 34px);
}
.wb-results-summary p {
  margin: 0;
  color: rgba(239, 238, 236, 0.62);
}
.wb-results-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  padding-bottom: 82px;
}
.wb-results-toolbar div:last-child {
  display: flex;
  gap: 14px;
}
.wb-results-table td b {
  display: block;
  color: #fff;
}
.wb-results-table td span {
  display: block;
  color: rgba(239, 238, 236, 0.48);
  font-size: 13px;
}
.wb-results-table td i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(40, 184, 148, 0.13);
  border: 1px solid rgba(40, 184, 148, 0.3);
  color: #32e6b9;
  font-style: normal;
  font-weight: 900;
}
.wb-results-table td a {
  display: inline-flex;
  margin-right: 8px;
  color: #32e6b9;
  font-weight: 800;
}
.wb-results-side {
  display: grid;
  gap: 16px;
  align-content: start;
}
.wb-ai-card,
.wb-login-unlock {
  padding: 26px;
  border-radius: 18px;
  background: #191a23;
  border: 1px solid rgba(239, 238, 236, 0.08);
}
.wb-ai-card p {
  margin: 0 0 10px;
  color: #32e6b9;
}
.wb-ai-card h3,
.wb-login-unlock h3 {
  font-size: 26px;
  color: #fff;
}
.wb-ai-card ul {
  margin: 16px 0 22px;
  padding-left: 20px;
  color: rgba(239, 238, 236, 0.68);
  line-height: 1.8;
}
.wb-ai-card .wb-download {
  width: 100%;
}
.wb-login-unlock p {
  color: rgba(239, 238, 236, 0.62);
}
.wb-login-unlock a {
  display: inline-flex;
  color: #32e6b9;
  font-weight: 900;
}
.wb-login-footer {
  text-align: center;
  color: rgba(239, 238, 236, 0.62);
  margin-top: 16px;
}
.wb-login-footer a {
  color: #28b894;
  font-weight: 600;
}
.wb-results-next {
  padding-top: 0;
  padding-bottom: 98px;
}
.wb-results-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.wb-results-actions a {
  min-height: 142px;
  padding: 22px;
  border-radius: 16px;
  background: #191a23;
  border: 1px solid rgba(239, 238, 236, 0.08);
}
.wb-results-actions b {
  display: block;
  color: #fff;
  font-size: 22px;
}
.wb-results-actions span {
  display: block;
  margin-top: 10px;
  color: rgba(239, 238, 236, 0.62);
}
@media (max-width: 1200px) {
  .wb-customs-hero,
  .wb-customs-preview,
  .wb-customs-next,
  .wb-customs-agent-cta,
  .wb-results-hero,
  .wb-results-summary,
  .wb-results-layout,
  .wb-results-next {
    padding-left: 28px;
    padding-right: 28px;
  }
  .wb-customs-hero-inner,
  .wb-results-layout {
    grid-template-columns: 1fr;
  }
  .wb-customs-action-flow,
  .wb-results-summary,
  .wb-results-actions {
    grid-template-columns: repeat(2, 1fr);
  }
  .wb-customs-agent-cta,
  .wb-results-hero {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 720px) {
  .wb-customs-hero {
    padding: 118px 18px 56px;
  }
  .wb-customs-copy h1,
  .wb-results-hero h1 {
    font-size: 42px;
  }
  .wb-customs-desc,
  .wb-results-hero span {
    font-size: 16px;
  }
  .wb-customs-search {
    padding: 18px;
    border-radius: 16px;
  }
  .wb-customs-tabs,
  .wb-customs-searchbox,
  .wb-results-search {
    display: flex;
    flex-direction: column;
  }
  .wb-customs-tabs button,
  .wb-customs-searchbox button,
  .wb-results-search button {
    width: 100%;
    height: 48px;
  }
  .wb-customs-searchbox {
    padding: 14px;
  }
  .wb-customs-searchbox svg {
    display: none;
  }
  .wb-customs-filter-grid,
  .wb-customs-action-flow,
  .wb-results-summary,
  .wb-results-actions {
    grid-template-columns: 1fr;
  }
  .wb-customs-unlock {
    grid-template-columns: 1fr;
  }
  .wb-customs-preview,
  .wb-customs-next,
  .wb-customs-agent-cta,
  .wb-results-hero,
  .wb-results-summary,
  .wb-results-layout,
  .wb-results-next {
    padding-left: 18px;
    padding-right: 18px;
  }
  .wb-customs-panel-head,
  .wb-results-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .wb-customs-agent-cta {
    border-radius: 32px 32px 0 0;
    align-items: flex-start;
  }
  .wb-customs-agent-actions {
    width: 100%;
    flex-direction: column;
  }
  .wb-results-toolbar div:last-child {
    flex-wrap: wrap;
  }
  .wb-results-search {
    width: 100%;
  }
  .wb-results-side {
    grid-row: auto;
  }
}

/* Expert portrait cards */
.wb-agent-chip {
  position: relative;
  overflow: hidden;
  min-height: 92px;
  padding: 12px 14px 12px 108px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.035)
  );
}
.wb-agent-chip img {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 78px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(50, 230, 185, 0.28);
  box-shadow: 0 0 22px rgba(40, 184, 148, 0.14);
}
.wb-agent-chip:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(40, 184, 148, 0.08) 100%
  );
  pointer-events: none;
}
.wb-agent-chip span {
  position: relative;
  z-index: 1;
}
.wb-agent-chip b {
  font-size: 15px;
}
.wb-agent-chip em {
  font-size: 12px;
}
@media (max-width: 720px) {
  .wb-agent-chip {
    padding-left: 102px;
  }
  .wb-agent-chip img {
    width: 74px;
    height: 70px;
  }
}

/* Keep the homepage expert console fully visible in a first-screen desktop viewport */
@media (min-width: 1201px) {
  .workbuddy-inspired .wb-hero {
    min-height: 650px;
    padding: 72px 0 28px;
  }
  .workbuddy-inspired .wb-hero-inner {
    align-items: center;
  }
  .workbuddy-inspired .wb-hero-copy {
    gap: 14px;
    max-width: 660px;
  }
  .workbuddy-inspired .wb-kicker {
    font-size: clamp(14px, 1.25vw, 20px);
    line-height: 1.5;
  }
  .workbuddy-inspired .wb-hero h1 {
    font-size: clamp(46px, 4.25vw, 72px);
    line-height: 1.03;
  }
  .workbuddy-inspired .wb-hero-desc {
    font-size: clamp(14px, 0.95vw, 17px);
    line-height: 1.62;
    gap: 4px;
  }
  .workbuddy-inspired .wb-cta {
    margin-top: 10px;
  }
  .workbuddy-inspired .wb-download {
    height: 40px;
    font-size: 15px;
    padding: 0 18px;
  }
  .workbuddy-inspired .wb-channel-row {
    gap: 8px;
  }
  .workbuddy-inspired .wb-channel-row a {
    min-height: 50px;
    padding: 8px 12px;
  }
  .workbuddy-inspired .wb-channel-row b {
    font-size: 15px;
  }
  .workbuddy-inspired .wb-channel-row span {
    font-size: 12px;
  }
  .workbuddy-inspired .wb-hero-visual {
    min-height: 508px;
    flex-basis: 640px;
  }
  .workbuddy-inspired .wb-orb {
    width: 150px;
    height: 150px;
    font-size: 20px;
    top: -2%;
    right: 8%;
  }
  .workbuddy-inspired .wb-desk {
    width: min(600px, 100%);
    padding: 12px;
    transform: rotate(-1.1deg);
  }
  .workbuddy-inspired .wb-desk-top {
    height: 28px;
  }
  .workbuddy-inspired .wb-task {
    padding: 12px;
  }
  .workbuddy-inspired .wb-task small {
    font-size: 12px;
  }
  .workbuddy-inspired .wb-task b {
    font-size: 19px;
    margin: 2px 0 9px;
  }
  .workbuddy-inspired .wb-progress {
    height: 7px;
  }
  .workbuddy-inspired .wb-agent-cloud {
    gap: 7px;
    margin-top: 8px;
  }
  .workbuddy-inspired .wb-agent-chip {
    min-height: 60px;
    padding: 7px 10px 7px 76px;
  }
  .workbuddy-inspired .wb-agent-chip img {
    left: 7px;
    top: 6px;
    width: 54px;
    height: 48px;
  }
  .workbuddy-inspired .wb-agent-chip b {
    font-size: 13px;
    line-height: 1.15;
  }
  .workbuddy-inspired .wb-agent-chip em {
    font-size: 11px;
  }
  .workbuddy-inspired .wb-input {
    margin-top: 8px;
    padding: 8px 12px;
    font-size: 14px;
  }
}

/* Restore a fuller first-screen composition on taller desktop browsers */
@media (min-width: 1201px) and (min-height: 800px) {
  .workbuddy-inspired .wb-hero {
    min-height: 0;
    padding: 100px 0 24px;
  }
  .workbuddy-inspired .wb-hero-inner {
    align-items: center;
  }
  .workbuddy-inspired .wb-hero-copy {
    max-width: 760px;
    gap: 18px;
  }
  .workbuddy-inspired .wb-kicker {
    font-size: clamp(18px, 1.55vw, 28px);
    line-height: 1.55;
  }
  .workbuddy-inspired .wb-hero h1 {
    font-size: clamp(72px, 5.25vw, 98px);
    line-height: 1.04;
  }
  .workbuddy-inspired .wb-hero-desc {
    font-size: clamp(16px, 1.05vw, 20px);
    line-height: 1.72;
    gap: 6px;
  }
  .workbuddy-inspired .wb-cta {
    margin-top: 18px;
  }
  .workbuddy-inspired .wb-download {
    height: 48px;
    font-size: 17px;
    padding: 0 22px;
  }
  .workbuddy-inspired .wb-channel-row {
    gap: 10px;
  }
  .workbuddy-inspired .wb-channel-row a {
    min-height: 68px;
    padding: 13px 16px;
  }
  .workbuddy-inspired .wb-channel-row b {
    font-size: 18px;
  }
  .workbuddy-inspired .wb-channel-row span {
    font-size: 13px;
  }
  .workbuddy-inspired .wb-hero-visual {
    min-height: 640px;
    flex-basis: 780px;
  }
  .workbuddy-inspired .wb-orb {
    width: 190px;
    height: 190px;
    font-size: 24px;
    top: -1%;
    right: 7%;
  }
  .workbuddy-inspired .wb-desk {
    width: min(720px, 100%);
    padding: 16px;
    transform: rotate(-1.2deg);
  }
  .workbuddy-inspired .wb-desk-top {
    height: 34px;
  }
  .workbuddy-inspired .wb-task {
    padding: 16px;
  }
  .workbuddy-inspired .wb-task small {
    font-size: 13px;
  }
  .workbuddy-inspired .wb-task b {
    font-size: 23px;
    margin: 4px 0 12px;
  }
  .workbuddy-inspired .wb-progress {
    height: 8px;
  }
  .workbuddy-inspired .wb-agent-cloud {
    gap: 9px;
    margin-top: 11px;
  }
  .workbuddy-inspired .wb-agent-chip {
    min-height: 78px;
    padding: 10px 12px 10px 96px;
  }
  .workbuddy-inspired .wb-agent-chip img {
    left: 9px;
    top: 8px;
    width: 70px;
    height: 62px;
  }
  .workbuddy-inspired .wb-agent-chip b {
    font-size: 14px;
    line-height: 1.18;
  }
  .workbuddy-inspired .wb-agent-chip em {
    font-size: 12px;
  }
  .workbuddy-inspired .wb-input {
    margin-top: 11px;
    padding: 12px 14px;
    font-size: 15px;
  }
  .workbuddy-inspired .wb-highlights {
    margin-top: 18px;
  }
}

/* Final hero flow fix: avoid browser-dependent blank space below the first screen */
@media (min-width: 1201px) {
  .workbuddy-inspired .wb-hero {
    min-height: auto;
    padding-bottom: 0;
  }
  .workbuddy-inspired .wb-hero-visual {
    min-height: auto;
  }
  .workbuddy-inspired .wb-highlights {
    margin-top: 28px;
  }
}

@media (min-width: 1201px) and (min-height: 800px) {
  .workbuddy-inspired .wb-hero {
    padding-top: 96px;
    padding-bottom: 0;
  }
  .workbuddy-inspired .wb-hero-visual {
    min-height: auto;
  }
  .workbuddy-inspired .wb-highlights {
    margin-top: 28px;
  }
}

/* Stable desktop first screen: one viewport, no browser-toolbar dependent gap */
@media (min-width: 1201px) {
  .workbuddy-inspired .wb-hero {
    min-height: calc(100vh - 78px);
    padding: clamp(72px, 7.2vh, 96px) 0 clamp(26px, 3.6vh, 42px);
    display: flex;
    align-items: center;
  }
  .workbuddy-inspired .wb-hero-inner {
    align-items: center;
    gap: clamp(44px, 5vw, 82px);
  }
  .workbuddy-inspired .wb-hero-copy {
    max-width: min(780px, 45vw);
    gap: clamp(15px, 1.8vh, 22px);
  }
  .workbuddy-inspired .wb-kicker {
    font-size: clamp(18px, 1.45vw, 27px);
    line-height: 1.48;
  }
  .workbuddy-inspired .wb-hero h1 {
    font-size: clamp(72px, 5.15vw, 96px);
    line-height: 1.03;
  }
  .workbuddy-inspired .wb-hero-desc {
    font-size: clamp(16px, 1.02vw, 19px);
    line-height: 1.66;
    gap: 5px;
  }
  .workbuddy-inspired .wb-cta {
    margin-top: clamp(12px, 2vh, 22px);
  }
  .workbuddy-inspired .wb-download {
    height: 48px;
    font-size: 17px;
    padding: 0 22px;
  }
  .workbuddy-inspired .wb-channel-row {
    width: min(760px, 100%);
    gap: 10px;
    margin-top: 4px;
  }
  .workbuddy-inspired .wb-channel-row a {
    min-height: 66px;
    padding: 12px 16px;
  }
  .workbuddy-inspired .wb-channel-row b {
    font-size: 17px;
  }
  .workbuddy-inspired .wb-channel-row span {
    font-size: 13px;
  }
  .workbuddy-inspired .wb-hero-visual {
    min-height: 0;
    flex: 0 1 min(780px, 48vw);
  }
  .workbuddy-inspired .wb-orb {
    width: 190px;
    height: 190px;
    top: -1%;
    right: 7%;
  }
  .workbuddy-inspired .wb-desk {
    width: min(720px, 100%);
    padding: 16px;
    transform: rotate(-1.2deg);
  }
  .workbuddy-inspired .wb-desk-top {
    height: 34px;
  }
  .workbuddy-inspired .wb-task {
    padding: 16px;
  }
  .workbuddy-inspired .wb-task b {
    font-size: 23px;
    margin: 4px 0 12px;
  }
  .workbuddy-inspired .wb-agent-cloud {
    gap: 9px;
    margin-top: 11px;
  }
  .workbuddy-inspired .wb-agent-chip {
    min-height: 78px;
    padding: 10px 12px 10px 96px;
  }
  .workbuddy-inspired .wb-agent-chip img {
    left: 9px;
    top: 8px;
    width: 70px;
    height: 62px;
  }
  .workbuddy-inspired .wb-agent-chip b {
    font-size: 14px;
    line-height: 1.18;
  }
  .workbuddy-inspired .wb-agent-chip em {
    font-size: 12px;
  }
  .workbuddy-inspired .wb-input {
    margin-top: 11px;
    padding: 12px 14px;
    font-size: 15px;
  }
  .workbuddy-inspired .wb-highlights {
    margin-top: 0;
  }
}

@media (min-width: 1201px) and (max-height: 780px) {
  .workbuddy-inspired .wb-hero {
    padding-top: 66px;
    padding-bottom: 22px;
  }
  .workbuddy-inspired .wb-hero-copy {
    max-width: min(700px, 45vw);
    gap: 13px;
  }
  .workbuddy-inspired .wb-kicker {
    font-size: clamp(16px, 1.25vw, 22px);
  }
  .workbuddy-inspired .wb-hero h1 {
    font-size: clamp(60px, 4.55vw, 82px);
  }
  .workbuddy-inspired .wb-hero-desc {
    font-size: clamp(15px, 0.96vw, 17px);
    line-height: 1.58;
  }
  .workbuddy-inspired .wb-cta {
    margin-top: 10px;
  }
  .workbuddy-inspired .wb-channel-row a {
    min-height: 58px;
    padding: 10px 14px;
  }
  .workbuddy-inspired .wb-hero-visual {
    flex-basis: min(720px, 47vw);
  }
  .workbuddy-inspired .wb-desk {
    width: min(660px, 100%);
    padding: 13px;
  }
  .workbuddy-inspired .wb-desk-top {
    height: 30px;
  }
  .workbuddy-inspired .wb-task {
    padding: 13px;
  }
  .workbuddy-inspired .wb-task b {
    font-size: 20px;
    margin: 3px 0 10px;
  }
  .workbuddy-inspired .wb-agent-chip {
    min-height: 66px;
    padding: 8px 10px 8px 82px;
  }
  .workbuddy-inspired .wb-agent-chip img {
    left: 8px;
    top: 7px;
    width: 60px;
    height: 52px;
  }
  .workbuddy-inspired .wb-input {
    margin-top: 9px;
    padding: 9px 12px;
  }
}

/* Homepage video showcase, expandable skill market, and OraAgent finale */
.wb-video-stage {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 12px;
  border-radius: 20px 20px 0 0;
  background: #0a0a0a;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(239, 238, 236, 0.08);
  border-bottom: 0;
}
.wb-hero-line {
  margin: 0;
  color: #dffbf4;
  font-size: clamp(16px, 1.08vw, 20px);
  line-height: 1.55;
  font-weight: 800;
  text-shadow: 0 0 24px rgba(40, 184, 148, 0.16);
}
.wb-video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(180deg, #151620, #08090d);
  border: 1px solid rgba(239, 238, 236, 0.1);
}
.wb-video-toolbar {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(239, 238, 236, 0.08);
  color: rgba(239, 238, 236, 0.58);
}
.wb-video-toolbar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff6b7d;
}
.wb-video-toolbar span:nth-child(2) {
  background: #ffc857;
}
.wb-video-toolbar span:nth-child(3) {
  background: #28b894;
}
.wb-video-toolbar strong {
  margin-left: auto;
  color: #fff;
  font-size: 15px;
}
.wb-video-screen {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 18%,
      rgba(50, 230, 185, 0.22),
      transparent 34%
    ),
    radial-gradient(
      circle at 18% 72%,
      rgba(125, 143, 255, 0.13),
      transparent 24%
    ),
    linear-gradient(135deg, #11121a 0%, #050505 72%);
}
.wb-video-screen:before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(50, 230, 185, 0.16);
  border-radius: 32px;
  box-shadow: 0 0 80px rgba(40, 184, 148, 0.12);
}
.wb-video-screen:after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  top: 50%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(50, 230, 185, 0.52),
    transparent
  );
  transform: rotate(-10deg);
}
.wb-video-screen video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(0.9) contrast(1.05) brightness(0.72);
}
.wb-video-placeholder {
  position: relative;
  z-index: 2;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 32px;
}
.wb-video-placeholder button {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 1px solid rgba(50, 230, 185, 0.58);
  background: rgba(40, 184, 148, 0.12);
  color: #32e6b9;
  display: grid;
  place-items: center;
  box-shadow: 0 0 44px rgba(40, 184, 148, 0.26);
  cursor: pointer;
  transition: 0.22s ease;
}
.wb-video-placeholder button:hover {
  transform: scale(1.05);
  background: rgba(40, 184, 148, 0.18);
}
.wb-video-placeholder button svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
  stroke: none;
  margin-left: 4px;
}
.wb-video-placeholder p {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.3vw, 56px);
  line-height: 1.05;
  font-weight: 850;
}
.wb-video-placeholder span {
  color: rgba(239, 238, 236, 0.68);
  font-size: 18px;
}
.wb-video-orbit {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(40, 184, 148, 0.12);
  border: 1px solid rgba(50, 230, 185, 0.32);
  color: #dffbf4;
  font-weight: 900;
  box-shadow: 0 0 36px rgba(40, 184, 148, 0.18);
}
.wb-video-orbit.orbit-a {
  left: 11%;
  top: 20%;
}
.wb-video-orbit.orbit-b {
  right: 13%;
  top: 28%;
}
.wb-video-orbit.orbit-c {
  left: 18%;
  bottom: 17%;
}
.wb-agent-demo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: min(980px, 82%);
  min-height: 390px;
  transform: translate(-50%, -50%);
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(8, 12, 18, 0.82),
    rgba(5, 8, 12, 0.68)
  );
  border: 1px solid rgba(50, 230, 185, 0.22);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.wb-agent-demo.is-muted {
  opacity: 0;
  transform: translate(-50%, -48%);
  pointer-events: none;
}
.wb-demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.wb-demo-head span {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(40, 184, 148, 0.12);
  border: 1px solid rgba(50, 230, 185, 0.28);
  color: #32e6b9;
  font-size: 13px;
  font-weight: 900;
}
.wb-demo-head strong {
  color: #fff;
  font-size: 20px;
  text-align: right;
}
.wb-demo-body {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) 1.4fr;
  gap: 16px;
  align-items: stretch;
  flex: 1;
}
.wb-boss-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wb-boss-card:before {
  content: "";
  position: absolute;
  inset: auto -18% -38% 30%;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(50, 230, 185, 0.22),
    transparent 65%
  );
  filter: blur(10px);
}
.wb-boss-meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.wb-boss-card i {
  color: #32e6b9;
  font-style: normal;
  font-weight: 900;
  font-size: 14px;
}
.wb-input-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(50, 230, 185, 0.1);
  border: 1px solid rgba(50, 230, 185, 0.24);
  color: #dffbf4;
  font-size: 12px;
  font-weight: 900;
}
.wb-input-badge:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #32e6b9;
  box-shadow: 0 0 12px rgba(50, 230, 185, 0.8);
}
.wb-boss-card p {
  position: relative;
  margin: 12px 0 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 850;
  min-height: 124px;
}
.wb-boss-card p.is-typing:after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 4px;
  background: #32e6b9;
  vertical-align: -0.12em;
  animation: wbCursor 1s step-end infinite;
}
.wb-voice-wave {
  position: relative;
  display: none;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  height: 28px;
}
.wb-voice-wave span {
  width: 5px;
  height: 12px;
  border-radius: 999px;
  background: #32e6b9;
  box-shadow: 0 0 12px rgba(50, 230, 185, 0.45);
  animation: wbVoiceWave 0.9s ease-in-out infinite;
}
.wb-voice-wave span:nth-child(2) {
  animation-delay: 0.12s;
}
.wb-voice-wave span:nth-child(3) {
  animation-delay: 0.24s;
}
.wb-voice-wave span:nth-child(4) {
  animation-delay: 0.36s;
}
.wb-boss-card.is-voice .wb-voice-wave {
  display: flex;
}
.wb-boss-card.is-voice .wb-input-badge {
  background: rgba(124, 143, 255, 0.13);
  border-color: rgba(124, 143, 255, 0.28);
}
.wb-boss-card.is-voice .wb-input-badge:before {
  background: #9aa8ff;
  box-shadow: 0 0 12px rgba(154, 168, 255, 0.8);
}
.wb-demo-thread {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
}
.wb-demo-message {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(8, 13, 18, 0.72);
  border: 1px solid rgba(50, 230, 185, 0.18);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translateY(12px);
  animation: wbDemoMessage 0.45s ease forwards;
}
.wb-demo-message img {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(50, 230, 185, 0.36);
  box-shadow: 0 0 18px rgba(40, 184, 148, 0.14);
}
.wb-demo-message b {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}
.wb-demo-message em {
  display: block;
  margin: 3px 0 6px;
  color: #32e6b9;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}
.wb-demo-message p {
  margin: 0;
  color: rgba(239, 238, 236, 0.86);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}
.wb-demo-progress {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
}
.wb-demo-progress i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #28b894, #32e6b9);
  box-shadow: 0 0 16px rgba(50, 230, 185, 0.45);
}
.wb-demo-progress i.is-running {
  animation: wbDemoProgress var(--demo-duration, 13s) linear forwards;
}
@keyframes wbDemoMessage {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes wbDemoProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes wbCursor {
  50% {
    opacity: 0;
  }
}
@keyframes wbVoiceWave {
  0%,
  100% {
    height: 8px;
    opacity: 0.65;
  }
  50% {
    height: 24px;
    opacity: 1;
  }
}
.wb-video-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.wb-video-notes article {
  min-height: 82px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(40, 184, 148, 0.08);
  border: 1px solid rgba(40, 184, 148, 0.2);
  display: flex;
  align-items: center;
  gap: 14px;
}
.wb-video-notes b {
  color: #32e6b9;
  font-size: 20px;
}
.wb-video-notes span {
  color: rgba(239, 238, 236, 0.78);
  font-weight: 700;
}
.wb-skill-grid {
  grid-template-columns: repeat(3, 1fr);
}
.wb-more-skills {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(40, 184, 148, 0.16),
    rgba(25, 26, 35, 0.98)
  ) !important;
  border-color: rgba(50, 230, 185, 0.34) !important;
}
.wb-more-skills:before {
  content: "";
  position: absolute;
  inset: auto -20% -45% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(50, 230, 185, 0.14);
  filter: blur(8px);
}
.wb-more-skills em {
  position: relative;
  margin-top: auto;
  color: #32e6b9;
  font-style: normal;
  font-weight: 900;
}
.wb-brand-finale {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 96px 80px 78px;
  display: grid;
  place-items: center;
  text-align: center;
  background: #000;
  border-top: 1px solid rgba(239, 238, 236, 0.08);
}
.wb-finale-glow {
  position: absolute;
  inset: auto 18% 18% 18%;
  height: 180px;
  background: radial-gradient(
    ellipse at center,
    rgba(40, 184, 148, 0.22),
    transparent 68%
  );
  filter: blur(24px);
}
.wb-brand-finale p {
  position: relative;
  margin: 0;
  color: rgba(239, 238, 236, 0.55);
  letter-spacing: 0.18em;
  font-size: 15px;
  font-weight: 800;
}
.wb-brand-finale h2 {
  position: relative;
  margin: 18px 0 16px;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(76px, 15vw, 260px);
  line-height: 0.85;
  font-weight: 950;
  letter-spacing: -0.02em;
  text-transform: none;
}
.wb-brand-finale h2:before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(50, 230, 185, 0.32);
  text-shadow: 0 0 34px rgba(40, 184, 148, 0.18);
}
.wb-brand-finale h2:after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(50, 230, 185, 0.04) 35%,
    rgba(50, 230, 185, 0.42) 48%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(50, 230, 185, 0.34) 52%,
    rgba(50, 230, 185, 0.04) 65%,
    transparent 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: wbShine 5.8s ease-in-out infinite;
}
.wb-brand-finale div:not(.wb-finale-glow) {
  position: relative;
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
}
.wb-brand-finale div:not(.wb-finale-glow) span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(25, 26, 35, 0.86);
  border: 1px solid rgba(50, 230, 185, 0.2);
  color: #dffbf4;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(40, 184, 148, 0.08);
}
@keyframes wbShine {
  0%,
  34% {
    clip-path: inset(0 100% 0 0);
  }
  58%,
  100% {
    clip-path: inset(0 0 0 100%);
  }
}
@media (max-width: 1200px) {
  .wb-video-screen {
    min-height: 420px;
  }
  .wb-video-notes,
  .wb-skill-grid {
    grid-template-columns: 1fr;
  }
  .wb-brand-finale {
    padding-left: 28px;
    padding-right: 28px;
  }
}
@media (max-width: 720px) {
  .wb-video-stage {
    border-radius: 16px 16px 0 0;
  }
  .wb-video-screen {
    min-height: 520px;
  }
  .wb-video-placeholder button {
    width: 68px;
    height: 68px;
  }
  .wb-video-placeholder p {
    font-size: 28px;
  }
  .wb-video-placeholder span {
    font-size: 14px;
  }
  .wb-video-orbit {
    display: none;
  }
  .wb-agent-demo {
    width: 90%;
    min-height: 440px;
    padding: 14px;
    border-radius: 18px;
  }
  .wb-demo-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .wb-demo-head strong {
    text-align: left;
    font-size: 17px;
  }
  .wb-demo-body {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .wb-boss-card {
    padding: 16px;
  }
  .wb-boss-card p {
    font-size: 16px;
    min-height: 72px;
  }
  .wb-demo-message {
    grid-template-columns: 42px 1fr;
    padding: 10px;
  }
  .wb-demo-message img {
    width: 42px;
    height: 42px;
  }
  .wb-demo-message p {
    font-size: 13px;
  }
  .wb-video-notes {
    grid-template-columns: 1fr;
  }
  .wb-brand-finale {
    min-height: 360px;
    padding: 64px 18px;
  }
  .wb-brand-finale h2 {
    font-size: 72px;
  }
  .wb-brand-finale div:not(.wb-finale-glow) {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .wb-brand-finale div:not(.wb-finale-glow) span {
    width: 34px;
    height: 34px;
  }
}

/* OraAgent detail page */
.agent-hero .wb-sub-desc {
  max-width: 980px;
}
.agent-hero-command {
  min-height: 860px;
  padding: 112px 52px 46px;
  text-align: left;
  background:
    radial-gradient(circle at 55% 18%, rgba(40, 184, 148, 0.26), transparent 30%),
    radial-gradient(circle at 12% 78%, rgba(0, 212, 255, 0.13), transparent 28%),
    linear-gradient(180deg, #000 0%, #03090d 58%, #000 100%);
}
.agent-hero-command:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 190px;
  background:
    radial-gradient(ellipse at 18% 100%, rgba(0, 212, 255, 0.18), transparent 52%),
    radial-gradient(ellipse at 80% 100%, rgba(50, 230, 185, 0.18), transparent 54%);
  pointer-events: none;
}
.agent-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(700px, 0.98fr) minmax(600px, 1fr);
  gap: 38px;
  align-items: center;
  width: min(1760px, 100%);
  margin: 0 auto;
}
.agent-hero-copy {
  max-width: 860px;
}
.agent-hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 0 0 28px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(50, 230, 185, 0.42);
  background: rgba(40, 184, 148, 0.08);
  color: #dffbf4;
  font-size: clamp(16px, 1.15vw, 20px);
  letter-spacing: 0;
}
.agent-hero-command h1 {
  margin: 0;
  font-size: clamp(56px, 5.15vw, 88px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}
.agent-hero-command h1 em {
  color: #32e6b9;
  font-style: normal;
  text-shadow: 0 0 38px rgba(50, 230, 185, 0.42);
}
.agent-hero-command .wb-sub-desc {
  margin: 22px 0 0;
  max-width: 780px;
  color: rgba(239, 238, 236, 0.76);
  font-size: clamp(17px, 1.35vw, 23px);
  line-height: 1.85;
}
.agent-hero-command .wb-sub-actions {
  justify-content: flex-start;
  margin-top: 28px;
}
.agent-hero-command .wb-sub-actions .wb-download:first-child {
  min-width: 260px;
  background: linear-gradient(135deg, #32e6b9, #26b7ff);
  border-color: transparent;
  color: #001b18;
  box-shadow: 0 18px 48px rgba(40, 184, 148, 0.22);
}
.agent-hero-command .agent-hero-tags {
  justify-content: flex-start;
}
.agent-hero-line {
  position: relative;
  margin: 24px 0 0;
  color: #32e6b9;
  font-size: clamp(18px, 1.45vw, 26px);
  font-weight: 900;
  text-align: center;
}
.agent-hero-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(92px, 1fr));
  gap: 10px;
  width: min(860px, 100%);
  margin: 28px 0 0;
}
.agent-hero-flow span {
  position: relative;
  min-height: 86px;
  padding: 12px 8px 10px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(50, 230, 185, 0.13), rgba(239, 238, 236, 0.04)),
    #071014;
  border: 1px solid rgba(50, 230, 185, 0.46);
  box-shadow: inset 0 0 24px rgba(40, 184, 148, 0.08), 0 10px 34px rgba(0, 0, 0, 0.22);
  text-align: center;
}
.agent-hero-flow span:not(:last-child):after {
  content: "";
  position: absolute;
  top: 50%;
  right: -9px;
  width: 9px;
  height: 1px;
  background: rgba(50, 230, 185, 0.42);
}
.agent-hero-flow i {
  display: block;
  margin-bottom: 7px;
  color: rgba(50, 230, 185, 0.72);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.agent-hero-flow b {
  display: block;
  white-space: nowrap;
  color: #fff;
  font-size: clamp(14px, 0.88vw, 18px);
  line-height: 1.25;
}
.agent-command-visual {
  position: relative;
  min-height: 590px;
}
.agent-command-visual:before,
.agent-command-visual:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.agent-command-visual:before {
  width: 760px;
  height: 260px;
  right: 8px;
  bottom: 70px;
  transform: rotate(-8deg);
  box-shadow: 0 0 42px rgba(0, 212, 255, 0.12);
}
.agent-command-visual:after {
  width: 620px;
  height: 220px;
  right: 110px;
  top: 160px;
  transform: rotate(8deg);
}
.agent-command-panel {
  position: absolute;
  left: 0;
  top: 28px;
  width: min(720px, 78%);
  min-height: 492px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(99, 199, 255, 0.26);
  background:
    radial-gradient(circle at 50% 0, rgba(50, 230, 185, 0.13), transparent 30%),
    rgba(10, 18, 25, 0.78);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.44), inset 0 0 42px rgba(50, 230, 185, 0.035);
  backdrop-filter: blur(18px);
  transform: perspective(1200px) rotateY(-7deg) rotateX(2deg);
}
.agent-command-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(239, 238, 236, 0.08);
  color: rgba(239, 238, 236, 0.72);
}
.agent-command-top span {
  color: #32e6b9;
  font-weight: 900;
}
.agent-command-task {
  margin: 20px 0 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(239, 238, 236, 0.045);
  border: 1px solid rgba(239, 238, 236, 0.08);
  color: #fff;
  font-weight: 800;
}
.agent-command-steps {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 7px;
  margin: 12px 0 22px;
}
.agent-command-steps span {
  position: relative;
  padding-top: 28px;
  color: rgba(239, 238, 236, 0.62);
  font-size: 12px;
  text-align: center;
}
.agent-command-steps span:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.58);
  transform: translateX(-50%);
}
.agent-command-steps span.done:before,
.agent-command-steps span.active:before {
  background: #32e6b9;
  border-color: #32e6b9;
  box-shadow: 0 0 18px rgba(50, 230, 185, 0.55);
}
.agent-command-metrics {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 0.72fr);
  gap: 12px;
}
.agent-command-metrics article,
.agent-command-log {
  min-height: 118px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(239, 238, 236, 0.045);
  border: 1px solid rgba(239, 238, 236, 0.08);
}
.agent-command-metrics i,
.agent-command-metrics small {
  display: block;
  color: rgba(239, 238, 236, 0.52);
  font-style: normal;
}
.agent-command-metrics b {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 28px;
}
.agent-command-metrics em {
  display: block;
  height: 7px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #32e6b9 75%, rgba(239, 238, 236, 0.1) 75%);
}
.agent-command-log {
  margin-top: 12px;
}
.agent-command-log b {
  display: block;
  color: #32e6b9;
  margin-bottom: 12px;
}
.agent-command-log span {
  display: block;
  color: rgba(239, 238, 236, 0.66);
  font-size: 14px;
  line-height: 1.7;
}
.agent-expert-rail {
  position: absolute;
  right: 0;
  top: 72px;
  width: 270px;
  display: grid;
  gap: 12px;
  z-index: 2;
  box-sizing: border-box;
}
.agent-expert-rail article {
  position: relative;
  min-height: 106px;
  padding: 16px 14px 14px 92px;
  border-radius: 16px;
  border: 1px solid rgba(50, 230, 185, 0.35);
  background: rgba(9, 26, 32, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  box-sizing: border-box;
}
.agent-expert-rail img {
  position: absolute;
  left: 12px;
  bottom: 0;
  width: 70px;
  height: 92px;
  object-fit: cover;
  object-position: top center;
}
.agent-expert-rail b {
  display: block;
  color: #fff;
  font-size: 15px;
}
.agent-expert-rail span {
  display: block;
  margin-top: 5px;
  color: rgba(239, 238, 236, 0.58);
  font-size: 12px;
}
.agent-expert-rail i {
  position: absolute;
  right: 12px;
  bottom: 10px;
  color: #32e6b9;
  font-size: 12px;
  font-style: normal;
}
.agent-hero-tags {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px auto 0;
}
.agent-hero-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(40, 184, 148, 0.1);
  border: 1px solid rgba(50, 230, 185, 0.24);
  color: #dffbf4;
  font-weight: 800;
}
.agent-demo-section {
  padding-bottom: 88px;
}
.agent-product-preview {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 8%, rgba(40, 184, 148, 0.16), transparent 30%),
    #191a23;
}
.agent-product-preview-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.58fr) minmax(520px, 1fr);
  gap: 30px;
  align-items: center;
  width: min(1520px, 100%);
  margin: 0 auto;
}
.agent-product-copy {
  padding: 8px 0;
}
.agent-product-copy span {
  display: block;
  color: #32e6b9;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.18;
  font-weight: 900;
}
.agent-product-copy p {
  margin: 22px 0 0;
  color: rgba(239, 238, 236, 0.68);
  font-size: 18px;
  line-height: 1.85;
}
.agent-product-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 28px;
}
.agent-product-points b {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(40, 184, 148, 0.1);
  border: 1px solid rgba(50, 230, 185, 0.22);
  color: #dffbf4;
  font-size: 14px;
}
.agent-product-screen {
  position: relative;
  padding: 10px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(50, 230, 185, 0.42), rgba(239, 238, 236, 0.08));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}
.agent-product-preview .wb-band-head h2 {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(38px, 4.4vw, 76px);
}
.agent-product-screen:before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: -12px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(50, 230, 185, 0.55), transparent);
  filter: blur(16px);
}
.agent-product-screen img {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 20px;
  background: #fff;
}
.agent-demo-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 18px;
  border-radius: 28px;
  background: #0a0a0a;
  border: 1px solid rgba(239, 238, 236, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}
.agent-demo-shell .wb-agent-demo {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
  min-height: 450px;
  transform: none;
}
.agent-demo-shell .wb-agent-demo.is-muted {
  transform: none;
}
.agent-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.agent-flow-grid article {
  min-height: 240px;
  padding: 28px;
  border-radius: 20px;
  background: #191a23;
  border: 1px solid rgba(239, 238, 236, 0.08);
}
.agent-flow-grid span {
  color: #28b894;
  font-weight: 900;
}
.agent-flow-grid h3 {
  font-size: 25px;
  margin: 18px 0 12px;
}
.agent-flow-grid p {
  margin: 0;
  color: rgba(239, 238, 236, 0.62);
  line-height: 1.75;
}
.agent-expert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.agent-expert-grid article {
  overflow: hidden;
  border-radius: 20px;
  background: #111219;
  border: 1px solid rgba(239, 238, 236, 0.08);
  transition: 0.25s ease;
}
.agent-expert-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(50, 230, 185, 0.34);
}
.agent-expert-grid img {
  width: 100%;
  aspect-ratio: 1.18/1;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(50, 230, 185, 0.16);
}
.agent-expert-grid div {
  padding: 22px;
}
.agent-expert-grid i {
  color: #28b894;
  font-style: normal;
  font-weight: 900;
}
.agent-expert-grid h3 {
  font-size: 28px;
  margin: 8px 0 4px;
}
.agent-expert-grid strong {
  display: block;
  color: #32e6b9;
  margin-bottom: 12px;
}
.agent-expert-grid p {
  margin: 0;
  color: rgba(239, 238, 236, 0.62);
  line-height: 1.7;
}
.agent-skill-expand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border-top: 1px solid rgba(239, 238, 236, 0.08);
  border-bottom: 1px solid rgba(239, 238, 236, 0.08);
  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(40, 184, 148, 0.16),
      transparent 28%
    ),
    #000;
}
.agent-skill-expand div {
  max-width: 980px;
}
.agent-skill-expand p {
  margin: 0 0 12px;
  color: rgba(239, 238, 236, 0.58);
  letter-spacing: 0.12em;
}
.agent-skill-expand h2 {
  font-size: clamp(36px, 4vw, 76px);
  line-height: 1.06;
}
.agent-skill-expand span {
  display: block;
  margin-top: 22px;
  color: rgba(239, 238, 236, 0.66);
  font-size: 19px;
  line-height: 1.8;
}
.agent-final-cta {
  position: relative;
  overflow: hidden;
  padding: 110px 24px;
  text-align: center;
  background: #000;
}
.agent-final-cta:before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 20%;
  height: 180px;
  background: radial-gradient(
    ellipse at center,
    rgba(40, 184, 148, 0.2),
    transparent 70%
  );
  filter: blur(22px);
}
.agent-final-cta p,
.agent-final-cta h2,
.agent-final-cta div {
  position: relative;
}
.agent-final-cta p {
  margin: 0 0 16px;
  color: #32e6b9;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.agent-final-cta h2 {
  font-size: clamp(42px, 5vw, 92px);
  line-height: 1.06;
  margin: 0 auto;
  max-width: 1180px;
}
.agent-final-cta div {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}
@media (max-width: 1200px) {
  .agent-hero-command {
    padding: 118px 28px 64px;
  }
  .agent-hero-grid {
    grid-template-columns: 1fr;
  }
  .agent-hero-copy {
    max-width: none;
    text-align: center;
  }
  .agent-hero-command .wb-sub-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .agent-hero-flow {
    grid-template-columns: repeat(4, 1fr);
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }
  .agent-hero-flow span:nth-child(4):after {
    display: none;
  }
  .agent-hero-line {
    text-align: center;
  }
  .agent-hero-command .wb-sub-actions,
  .agent-hero-command .agent-hero-tags {
    justify-content: center;
  }
  .agent-command-visual {
    min-height: 610px;
    width: min(900px, 100%);
    margin: 10px auto 0;
  }
  .agent-command-panel {
    width: calc(100% - 220px);
  }
  .agent-product-preview-inner {
    grid-template-columns: 1fr;
  }
  .agent-flow-grid,
  .agent-expert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .agent-skill-expand {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 720px) {
  .agent-hero-command {
    min-height: auto;
    padding: 104px 18px 54px;
  }
  .agent-hero-badge {
    min-height: 38px;
    margin-bottom: 20px;
    padding: 0 14px;
  }
  .agent-hero-command h1 {
    font-size: 44px;
    line-height: 1.06;
  }
  .agent-hero-command .wb-sub-desc {
    font-size: 16px;
    line-height: 1.75;
  }
  .agent-hero-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 24px;
  }
  .agent-hero-flow span {
    min-height: 78px;
    padding: 12px;
  }
  .agent-hero-flow span:after {
    display: none;
  }
  .agent-hero-line {
    font-size: 18px;
    line-height: 1.55;
  }
  .agent-command-visual {
    display: none;
  }
  .agent-product-preview-inner {
    gap: 22px;
  }
  .agent-product-copy p {
    font-size: 16px;
  }
  .agent-product-points {
    align-items: stretch;
    flex-direction: column;
  }
  .agent-product-screen {
    padding: 6px;
    border-radius: 18px;
  }
  .agent-product-screen img {
    border-radius: 12px;
  }
  .agent-hero-tags {
    align-items: stretch;
    flex-direction: column;
  }
  .agent-demo-shell {
    padding: 10px;
    border-radius: 20px;
  }
  .agent-demo-shell .wb-agent-demo {
    min-height: 500px;
  }
  .agent-flow-grid,
  .agent-expert-grid {
    grid-template-columns: 1fr;
  }
  .agent-skill-expand {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .agent-skill-expand span {
    font-size: 16px;
  }
  .agent-final-cta {
    padding: 72px 18px;
  }
  .agent-final-cta div {
    flex-direction: column;
  }
  .agent-final-cta .wb-download {
    width: 100%;
  }
}

/* Skill pricing cards */
.wb-skill-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px 88px;
}
.wb-skill-price-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #191a23;
  border: 1px solid rgba(239, 238, 236, 0.08);
  padding: 34px 28px 30px;
  display: flex;
  flex-direction: column;
  transition: 0.25s ease;
}
.wb-skill-price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(50, 230, 185, 0.24);
}
.wb-skill-price-card:before {
  content: "";
  position: absolute;
  inset: auto 0 60% 0;
  height: 220px;
  background: radial-gradient(
    ellipse at 70% 0%,
    rgba(40, 184, 148, 0.08),
    transparent 60%
  );
  pointer-events: none;
}
.wb-skill-price-card .wb-badge {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(255, 180, 40, 0.18),
    rgba(255, 120, 40, 0.12)
  );
  border: 1px solid rgba(255, 180, 40, 0.34);
  color: #ffc857;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  align-self: flex-start;
  margin-bottom: 14px;
  position: relative;
}
.wb-skill-price-card h3 {
  font-size: 22px;
  font-weight: 820;
  margin-bottom: 8px;
  position: relative;
}
.wb-skill-price-card .wb-card-desc {
  margin: 0 0 22px;
  color: rgba(239, 238, 236, 0.58);
  font-size: 14px;
  line-height: 1.7;
  position: relative;
}
.wb-skill-price-card .wb-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
  padding: 16px 0;
  border-top: 1px solid rgba(239, 238, 236, 0.08);
  border-bottom: 1px solid rgba(239, 238, 236, 0.08);
  position: relative;
  flex-wrap: wrap;
}
.wb-skill-price-card .wb-price-row .monthly {
  font-size: 30px;
  font-weight: 900;
  color: #28b894;
  letter-spacing: -0.01em;
  text-shadow: 0 0 20px rgba(40, 184, 148, 0.3);
}
.wb-skill-price-card .wb-price-row .monthly small {
  font-size: 14px;
  font-weight: 700;
  color: rgba(40, 184, 148, 0.6);
}
.wb-skill-price-card .wb-price-row .original {
  font-size: 16px;
  font-weight: 600;
  color: rgba(239, 238, 236, 0.35);
  text-decoration: line-through;
  position: relative;
}
.wb-skill-price-card .wb-price-row .original small {
  font-size: 14px;
  font-weight: 500;
  color: rgba(239, 238, 236, 0.25);
}
.wb-skill-price-card .wb-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.wb-skill-price-card .wb-features li {
  padding-left: 26px;
  color: rgba(239, 238, 236, 0.82);
  font-size: 14px;
  line-height: 1.55;
  position: relative;
}
.wb-skill-price-card .wb-features li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #28b894;
  box-shadow: 0 0 8px rgba(40, 184, 148, 0.4);
}
.wb-skill-price-card.wide {
  grid-column: span 1;
}
@media (max-width: 1200px) {
  .wb-skill-pricing {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .wb-skill-pricing {
    grid-template-columns: 1fr;
    padding: 0 16px 60px;
  }
  .wb-skill-price-card {
    padding: 24px 20px;
  }
}

/* OraAgent pricing table */
.wb-agent-price-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px 88px;
  overflow-x: auto;
}
.wb-agent-price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(239, 238, 236, 0.08);
  background: #191a23;
  font-size: 14px;
  line-height: 1.55;
  min-width: 920px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.25);
}
.wb-agent-price-table thead th {
  background: rgba(239, 238, 236, 0.04);
  border-bottom: 1px solid rgba(239, 238, 236, 0.08);
  padding: 20px 16px;
  text-align: center;
  font-weight: 820;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
}
.wb-agent-price-table thead th:first-child {
  text-align: left;
  padding-left: 24px;
  color: rgba(239, 238, 236, 0.48);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.wb-agent-price-table thead th.highlight {
  background: linear-gradient(
    135deg,
    rgba(40, 184, 148, 0.22),
    rgba(40, 184, 148, 0.08)
  );
  color: #28b894;
  font-size: 18px;
  position: relative;
}
.wb-agent-price-table thead th.highlight:after {
  content: "推荐";
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 10px;
  font-weight: 900;
  background: #28b894;
  color: #000;
  padding: 1px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.wb-agent-price-table tbody td {
  padding: 16px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(239, 238, 236, 0.04);
  color: rgba(239, 238, 236, 0.78);
  vertical-align: top;
}
.wb-agent-price-table tbody td:first-child {
  text-align: left;
  padding-left: 24px;
  color: rgba(239, 238, 236, 0.48);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  vertical-align: middle;
  letter-spacing: 0.02em;
}
.wb-agent-price-table tbody td.price-cell {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  vertical-align: middle;
  padding: 20px 16px;
}
.wb-agent-price-table tbody td.price-cell.highlight {
  color: #28b894;
  font-size: 26px;
  text-shadow: 0 0 16px rgba(40, 184, 148, 0.2);
}
.wb-agent-price-table tbody tr:last-child td {
  border-bottom: none;
}
.wb-agent-price-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}
.wb-agent-price-table tbody td.highlight-col {
  background: rgba(40, 184, 148, 0.04);
}
.wb-agent-price-table tbody tr:hover td.highlight-col {
  background: rgba(40, 184, 148, 0.08);
}
.wb-agent-price-table tbody td .desc {
  display: block;
  margin-bottom: 2px;
  color: rgba(239, 238, 236, 0.82);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.65;
}
.wb-agent-price-table tbody td .desc small {
  display: block;
  color: rgba(239, 238, 236, 0.48);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.55;
  margin-top: 2px;
}
.wb-agent-price-foot {
  margin-top: 18px;
  padding: 16px 22px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(255, 200, 87, 0.1),
    rgba(255, 180, 40, 0.04)
  );
  border: 1px solid rgba(255, 200, 87, 0.18);
  font-size: 15px;
  color: #ffc857;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wb-agent-price-foot strong {
  font-weight: 800;
  color: #fff;
}
@media (max-width: 720px) {
  .wb-agent-price-wrap {
    padding: 0 16px 60px;
  }
}

/* 遮罩层：全屏固定、居中布局 */
.loading-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* 半透明黑色背景 */
  z-index: 3001;
  display: flex; /* 使用 flex 轻松实现居中 */
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s; /* 可选：增加淡入淡出效果 */
}

/* 隐藏状态 */
.loading-mask.hidden {
  display: none;
}

/* 内容容器：白色卡片背景 */
.loading-content {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}

/* 纯CSS绘制的旋转圆圈 */
.loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #f3f3f3; /* 浅灰色底圈 */
  border-top: 3px solid #3498db; /* 蓝色转动部分 */
  border-radius: 50%;
  margin-bottom: 10px;
  animation: spin 1s linear infinite; /* 绑定旋转动画 */
}

/* 文字样式 */
.loading-text {
  margin: 0;
  color: #666;
  font-size: 14px;
}

/* 定义旋转动画的关键帧 */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 3001;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading-mask.hidden {
  display: none;
}

.loading-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 16px 24px;
  border-radius: 4px;
  box-shadow:
    0 3px 6px -4px rgba(0, 0, 0, 0.12),
    0 6px 16px 0 rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Ant Design 风格的四点旋转器 */
.ant-loading-spinner {
  width: 30px;
  height: 30px;
  position: relative;
  animation: antRotate 1.2s infinite linear;
  margin-bottom: 8px;
}
.ant-loading-spinner span {
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  background-color: #1890ff; /* 主题色 */
  border-radius: 100%;
  opacity: 0.3;
  transform: scale(0.75);
  transform-origin: 50% 50%;
  animation: antSpinMove 1s infinite linear alternate;
}
.ant-loading-spinner span:nth-child(1) {
  top: 0;
  left: 0;
}
.ant-loading-spinner span:nth-child(2) {
  top: 0;
  right: 0;
  animation-delay: 0.4s;
}
.ant-loading-spinner span:nth-child(3) {
  right: 0;
  bottom: 0;
  animation-delay: 0.8s;
}
.ant-loading-spinner span:nth-child(4) {
  bottom: 0;
  left: 0;
  animation-delay: 1.2s;
}

.loading-text {
  margin: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
}

@keyframes antRotate {
  to {
    transform: rotate(360deg);
  }
}
@keyframes antSpinMove {
  to {
    opacity: 1;
  }
}

#captcha-box {
  position: absolute;
  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);
}

.my-confirm-layer {
  color: #000 !important; /* 红色字体，按需替换 */
}

/* ----- 验证码弹窗 (只有验证码输入核心) ----- */
.modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2001;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0.2s,
    opacity 0.2s ease;
}

.modal-mask.active {
  visibility: visible;
  opacity: 1;
}

/* 弹窗容器 — 只包含验证码相关元素 */
.verify-modal {
  background: white;
  width: 90%;
  max-width: 400px;
  border-radius: 48px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.modal-mask.active .verify-modal {
  transform: scale(1);
}

.modal-header {
  padding: 28px 28px 8px 28px;
  position: relative;
}

.modal-header h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #0a1e3c;
  margin-bottom: 6px;
}

.modal-sub {
  color: #5b6e8c;
  font-size: 0.85rem;
  margin-top: 4px;
}

.close-modal {
  position: absolute;
  right: 24px;
  top: 24px;
  background: #f0f2f5;
  width: 32px;
  height: 32px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: #4a5a7a;
  transition: 0.1s;
}

.close-modal:hover {
  background: #e2e8f0;
}

/* 只有验证码输入区域 - 没有手机号输入框 */
.modal-body {
  padding: 16px 28px 28px 28px;
}

.code-input-group {
  margin: 12px 0 20px;
}

.code-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2c3e66;
  margin-bottom: 10px;
  display: block;
}

.code-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f1f5f9;
  border-radius: 60px;
  padding: 4px 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
}

.code-wrapper:focus-within {
  border-color: #1e6ef0;
  background: white;
  box-shadow: 0 0 0 3px rgba(30, 110, 240, 0.15);
}

#verificationCode {
  flex: 1;
  border: none;
  background: transparent;
  padding: 16px 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  outline: none;
  color: #0a1e3c;
}

#verificationCode::placeholder {
  color: #abbcd9;
  font-weight: 400;
  letter-spacing: normal;
}

.resend-btn {
  background: transparent;
  border: none;
  color: #1e6ef0;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 8px 0;
  white-space: nowrap;
  transition: 0.1s;
}

.resend-btn.disabled {
  color: #abbcd9;
  cursor: not-allowed;
}

.error-msg {
  color: #e5484d;
  font-size: 0.75rem;
  margin-top: 8px;
  padding-left: 8px;
  min-height: 20px;
}

.confirm-btn {
  width: 100%;
  background: #0a1e3c;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 24px;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.confirm-btn:active {
  transform: scale(0.97);
}

.cancel-tip {
  text-align: center;
  margin-top: 16px;
  font-size: 0.8rem;
  color: #8b9ab5;
  cursor: pointer;
}

.skill_box {
  background: #0d1117;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: left;
}
.wb-header {
  padding: 0 24px;
}

.first_box {
  position: relative;
}
.first_price {
  position: absolute;
  top: -16px;
  left: 0px;
  font-size: 10px;
  font-weight: 900;
  background: #28b894;
  color: #000;
  padding: 1px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

/* OraAgent hero command center - aligned to the supplied design mockup */
@media (min-width: 1201px) {
  .agent-hero-command {
    min-height: 880px;
    padding: 118px 56px 42px;
  }
  .agent-hero-grid {
    grid-template-columns: minmax(0, 0.54fr) minmax(0, 0.46fr);
    gap: 10px;
    width: min(1920px, 100%);
  }
  .agent-hero-copy {
    position: relative;
    z-index: 3;
    max-width: none;
  }
  .agent-hero-command h1 {
    max-width: 900px;
    font-size: clamp(72px, 5.55vw, 112px);
    line-height: 0.97;
  }
  .agent-hero-command .wb-sub-desc {
    max-width: 780px;
    margin-top: 28px;
    font-size: clamp(18px, 1.28vw, 24px);
  }
  .agent-hero-flow {
    width: min(960px, 100%);
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
    margin-top: 38px;
  }
  .agent-hero-flow span {
    min-height: 120px;
    border-radius: 10px;
    padding: 14px 8px 12px;
  }
  .agent-hero-flow i {
    margin-bottom: 18px;
  }
  .agent-hero-line {
    width: min(960px, 100%);
    margin-top: 34px;
    text-align: center;
  }
  .agent-hero-command .wb-sub-actions {
    width: min(960px, 100%);
    justify-content: center;
    gap: 18px;
    margin-top: 30px;
  }
  .agent-hero-command .wb-sub-actions .wb-download {
    min-width: 230px;
    height: 64px;
    font-size: 20px;
  }
  .agent-hero-command .wb-sub-actions .wb-download:first-child {
    min-width: 300px;
  }
  .agent-hero-command .agent-hero-tags {
    width: min(960px, 100%);
    justify-content: center;
    gap: 18px;
    margin-top: 28px;
  }
  .agent-hero-command .agent-hero-tags span {
    min-width: 240px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
  }
  .agent-command-visual {
    min-height: 660px;
  }
  .agent-command-panel {
    left: 0;
    top: 24px;
    width: calc(100% - 238px);
    min-height: 560px;
    padding: 28px;
    transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
  }
  .agent-expert-rail {
    right: 0;
    top: 72px;
    width: 282px;
    gap: 14px;
  }
  .agent-expert-rail article {
    min-height: 112px;
    padding-left: 98px;
  }
  .agent-expert-rail img {
    width: 76px;
    height: 100px;
  }
}

@media (min-width: 1500px) {
  .agent-hero-flow,
  .agent-hero-line,
  .agent-hero-command .wb-sub-actions,
  .agent-hero-command .agent-hero-tags {
    width: min(1010px, 100%);
  }
  .agent-command-panel {
    width: calc(100% - 250px);
  }
  .agent-expert-rail {
    width: 300px;
  }
}

@media (min-width: 1201px) {
  .agent-command-task {
    white-space: nowrap;
  }
  .agent-command-steps span {
    font-size: 11px;
  }
  .agent-expert-rail span {
    line-height: 1.45;
  }
}

@media (min-width: 1201px) and (max-width: 1720px) {
  .agent-hero-grid {
    grid-template-columns: minmax(0, 0.53fr) minmax(0, 0.47fr);
    width: calc(100vw - 112px);
  }
  .agent-hero-command h1 {
    max-width: 820px;
    font-size: clamp(70px, 5.05vw, 92px);
  }
  .agent-hero-command .wb-sub-desc {
    max-width: 780px;
    font-size: clamp(18px, 1.12vw, 21px);
  }
  .agent-hero-flow,
  .agent-hero-line,
  .agent-hero-command .wb-sub-actions,
  .agent-hero-command .agent-hero-tags {
    width: min(860px, 100%);
  }
  .agent-hero-flow {
    gap: 10px;
  }
  .agent-hero-flow span {
    min-height: 120px;
    padding-inline: 6px;
  }
  .agent-hero-flow b {
    font-size: 15px;
  }
  .agent-command-visual {
    min-height: 650px;
  }
  .agent-command-panel {
    top: 22px;
    width: calc(100% - 255px);
    min-height: 560px;
    padding: 26px;
  }
  .agent-expert-rail {
    top: 70px;
    width: 292px;
  }
  .agent-expert-rail article {
    min-height: 112px;
    padding-left: 100px;
  }
  .agent-expert-rail img {
    width: 76px;
    height: 100px;
  }
}

@media (min-width: 1721px) {
  .agent-command-panel {
    max-width: 720px;
  }
}

/* OraAgent hero reset: match the supplied landing-page mockup proportions */
@media (min-width: 1201px) {
  .agent-hero-command {
    position: relative;
    min-height: 945px;
    padding: 128px 68px 38px;
    overflow: hidden;
  }
  .agent-hero-grid {
    display: block;
    width: 100%;
    height: 775px;
  }
  .agent-hero-copy {
    width: min(860px, 54vw);
    max-width: none;
    position: relative;
    z-index: 5;
  }
  .agent-hero-badge {
    min-height: 45px;
    margin-bottom: 30px;
    padding: 0 20px;
    font-size: 20px;
  }
  .agent-hero-command h1 {
    max-width: 780px;
    font-size: clamp(76px, 5.1vw, 92px);
    line-height: 0.98;
  }
  .agent-hero-command .wb-sub-desc {
    max-width: 780px;
    margin-top: 28px;
    font-size: clamp(19px, 1.18vw, 22px);
    line-height: 1.78;
  }
  .agent-hero-flow {
    width: min(790px, 100%);
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    margin-top: 36px;
  }
  .agent-hero-flow span {
    min-height: 110px;
    padding: 10px 6px 12px;
    border-radius: 8px;
    box-shadow:
      inset 0 0 26px rgba(40, 184, 148, 0.11),
      0 0 18px rgba(50, 230, 185, 0.08);
  }
  .agent-hero-flow span:not(:last-child):after {
    right: -10px;
    width: 10px;
  }
  .agent-hero-flow i {
    margin-bottom: 8px;
    font-size: 13px;
  }
  .agent-hero-flow svg {
    display: block;
    width: 27px;
    height: 27px;
    margin: 0 auto 7px;
    color: rgba(239, 255, 251, 0.9);
    stroke-width: 1.9;
  }
  .agent-hero-flow b {
    font-size: 16px;
    line-height: 1.18;
  }
  .agent-hero-line {
    width: min(790px, 100%);
    margin-top: 34px;
    font-size: clamp(22px, 1.45vw, 27px);
    line-height: 1.25;
  }
  .agent-hero-line:before,
  .agent-hero-line:after {
    content: "";
    display: inline-block;
    width: 92px;
    height: 1px;
    margin: 0 18px 8px;
    background: linear-gradient(90deg, transparent, rgba(50, 230, 185, 0.72));
  }
  .agent-hero-line:after {
    background: linear-gradient(90deg, rgba(50, 230, 185, 0.72), transparent);
  }
  .agent-hero-command .wb-sub-actions {
    width: 885px;
    max-width: 96vw;
    display: grid;
    grid-template-columns: 315px 265px 265px;
    gap: 14px;
    justify-content: center;
    margin: 28px 0 0 clamp(260px, 19.4vw, 370px);
    transform: none;
  }
  .agent-hero-command .wb-sub-actions .wb-download {
    min-width: 0;
    width: 100%;
    height: 74px;
    border-radius: 8px;
    font-size: 20px;
  }
  .agent-hero-command .wb-sub-actions .wb-download:first-child {
    min-width: 0;
  }
  .agent-hero-command .agent-hero-tags {
    width: 800px;
    max-width: 96vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    justify-content: center;
    margin: 24px 0 0 clamp(286px, 21vw, 395px);
    transform: none;
  }
  .agent-hero-command .agent-hero-tags span {
    min-width: 0;
    height: 58px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 18px;
  }
  .agent-command-visual {
    position: absolute;
    z-index: 2;
    right: -86px;
    top: 0;
    width: min(790px, 48vw);
    min-height: 610px;
    transform: none;
  }
  .agent-command-visual:before {
    width: 760px;
    height: 250px;
    right: -8px;
    bottom: 28px;
  }
  .agent-command-visual:after {
    width: 620px;
    height: 215px;
    right: 80px;
    top: 225px;
  }
  .agent-command-panel {
    left: 0;
    top: 0;
    width: calc(100% - 225px);
    max-width: none;
    min-height: 500px;
    padding: 22px;
    border-radius: 18px;
    transform: perspective(1300px) rotateY(-7deg) rotateX(2deg);
  }
  .agent-command-top {
    padding-bottom: 16px;
    font-size: 14px;
  }
  .agent-command-task {
    margin: 17px 0 15px;
    padding: 12px 13px;
    font-size: 15px;
  }
  .agent-command-steps {
    gap: 4px;
    margin: 9px 0 18px;
  }
  .agent-command-steps span {
    padding-top: 27px;
    font-size: 10px;
    line-height: 1.25;
  }
  .agent-command-metrics {
    grid-template-columns: 1.2fr repeat(3, 0.75fr);
    gap: 10px;
  }
  .agent-command-metrics article,
  .agent-command-log {
    min-height: 104px;
    padding: 15px;
    border-radius: 12px;
  }
  .agent-command-metrics b {
    margin-top: 7px;
    font-size: 25px;
  }
  .agent-command-log {
    min-height: 124px;
  }
  .agent-command-log span {
    font-size: 13px;
  }
  .agent-expert-rail {
    right: 92px;
    top: 38px;
    width: 255px;
    gap: 12px;
  }
  .agent-expert-rail article {
    min-height: 91px;
    padding: 13px 12px 12px 88px;
    border-radius: 12px;
  }
  .agent-expert-rail img {
    left: 10px;
    width: 66px;
    height: 88px;
  }
  .agent-expert-rail b {
    font-size: 15px;
  }
  .agent-expert-rail span {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.38;
  }
  .agent-expert-rail i {
    right: 12px;
    bottom: 8px;
    font-size: 11px;
  }
}

@media (min-width: 1500px) {
  .agent-command-visual {
    right: -92px;
    width: min(805px, 48vw);
  }
}

@media (min-width: 1800px) {
  .agent-hero-command {
    padding-left: 68px;
    padding-right: 68px;
  }
  .agent-hero-copy {
    width: 900px;
  }
  .agent-command-visual {
    right: -50px;
    width: 835px;
  }
  .agent-command-panel {
    width: calc(100% - 245px);
  }
  .agent-expert-rail {
    right: 76px;
    width: 280px;
  }
}

@media (min-width: 1201px) and (max-width: 1450px) {
  .agent-hero-command h1 {
    font-size: 72px;
  }
  .agent-hero-flow,
  .agent-hero-line {
    width: 740px;
  }
  .agent-command-visual {
    right: 24px;
    width: 705px;
    transform: scale(0.93);
    transform-origin: top right;
  }
}

/* OraAgent final polish: finer workflow cards, software-like perspective, calmer page rhythm */
@media (min-width: 1201px) {
  .agent-hero-command {
    min-height: 900px;
    padding-top: 118px;
  }
  .agent-hero-grid {
    height: 720px;
  }
  .agent-hero-copy {
    width: min(815px, 52vw);
  }
  .agent-hero-badge {
    min-height: 42px;
    margin-bottom: 26px;
    padding: 0 18px;
    font-size: 18px;
    box-shadow: inset 0 0 18px rgba(50, 230, 185, 0.08);
  }
  .agent-hero-command h1 {
    max-width: 765px;
    font-size: clamp(70px, 4.7vw, 86px);
    line-height: 0.98;
  }
  .agent-hero-command .wb-sub-desc {
    max-width: 750px;
    margin-top: 24px;
    font-size: clamp(18px, 1.06vw, 20px);
    line-height: 1.72;
  }
  .agent-hero-flow {
    width: min(735px, 100%);
    gap: 8px;
    margin-top: 30px;
  }
  .agent-hero-flow span {
    min-height: 92px;
    padding: 9px 5px 10px;
    border-radius: 7px;
    background:
      linear-gradient(180deg, rgba(50, 230, 185, 0.16), rgba(50, 230, 185, 0.035)),
      rgba(7, 16, 20, 0.78);
    border-color: rgba(50, 230, 185, 0.52);
    box-shadow:
      inset 0 0 18px rgba(40, 184, 148, 0.12),
      0 0 14px rgba(50, 230, 185, 0.08);
  }
  .agent-hero-flow span:not(:last-child):after {
    right: -8px;
    width: 8px;
    opacity: 0.7;
  }
  .agent-hero-flow i {
    margin-bottom: 5px;
    font-size: 12px;
  }
  .agent-hero-flow svg {
    width: 23px;
    height: 23px;
    margin-bottom: 6px;
    opacity: 0.92;
  }
  .agent-hero-flow b {
    font-size: 14px;
  }
  .agent-hero-line {
    width: min(760px, 100%);
    margin-top: 26px;
    font-size: clamp(19px, 1.25vw, 23px);
  }
  .agent-hero-line:before,
  .agent-hero-line:after {
    width: 78px;
    margin-bottom: 6px;
  }
  .agent-hero-command .wb-sub-actions {
    width: 800px;
    grid-template-columns: 285px 235px 235px;
    gap: 14px;
    margin-top: 24px;
    margin-left: 320px;
  }
  .agent-hero-command .wb-sub-actions .wb-download {
    height: 66px;
    font-size: 18px;
  }
  .agent-hero-command .agent-hero-tags {
    width: 720px;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 20px;
    margin-left: 360px;
  }
  .agent-hero-command .agent-hero-tags span {
    height: 52px;
    font-size: 16px;
  }
  .agent-command-visual {
    right: -88px;
    top: -4px;
    width: min(830px, 50vw);
    min-height: 590px;
    transform: perspective(1500px) rotateY(-10deg) rotateX(1.5deg) scale(0.9);
    transform-origin: top right;
    filter: drop-shadow(-18px 34px 65px rgba(0, 0, 0, 0.36));
  }
  .agent-command-visual:before {
    width: 740px;
    height: 245px;
    right: 20px;
    bottom: 18px;
    opacity: 0.92;
  }
  .agent-command-visual:after {
    width: 600px;
    height: 210px;
    right: 120px;
    top: 214px;
    opacity: 0.72;
  }
  .agent-command-panel {
    width: calc(100% - 258px);
    min-height: 500px;
    padding: 21px;
    border-radius: 18px;
    transform: skewY(-0.6deg);
    background:
      radial-gradient(circle at 52% -4%, rgba(50, 230, 185, 0.12), transparent 31%),
      linear-gradient(135deg, rgba(15, 35, 44, 0.86), rgba(9, 16, 23, 0.82));
    border-color: rgba(113, 208, 255, 0.28);
  }
  .agent-command-panel:after {
    content: "";
    position: absolute;
    top: 28px;
    right: -12px;
    width: 12px;
    height: calc(100% - 54px);
    border-radius: 0 14px 14px 0;
    background: linear-gradient(180deg, rgba(50, 230, 185, 0.12), rgba(0, 212, 255, 0.02));
    border: 1px solid rgba(113, 208, 255, 0.16);
    border-left: 0;
    opacity: 0.75;
  }
  .agent-command-task {
    font-size: 14px;
  }
  .agent-command-steps span {
    font-size: 10px;
  }
  .agent-command-metrics article,
  .agent-command-log {
    background: rgba(239, 238, 236, 0.04);
  }
  .agent-expert-rail {
    right: 74px;
    top: 44px;
    width: 270px;
    gap: 11px;
    transform: translateX(10px);
  }
  .agent-expert-rail article {
    min-height: 90px;
    padding: 12px 12px 11px 84px;
    border-radius: 12px;
    background:
      linear-gradient(135deg, rgba(14, 49, 55, 0.92), rgba(8, 23, 31, 0.9));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), inset 0 0 20px rgba(50, 230, 185, 0.03);
  }
  .agent-expert-rail img {
    width: 64px;
    height: 86px;
  }
  .agent-expert-rail b {
    font-size: 14px;
  }
  .agent-expert-rail span,
  .agent-expert-rail i {
    font-size: 11px;
  }
}

@media (min-width: 1500px) {
  .agent-hero-copy {
    width: 820px;
  }
  .agent-command-visual {
    right: -92px;
    width: 835px;
  }
}

@media (min-width: 1800px) {
  .agent-hero-command {
    min-height: 940px;
  }
  .agent-command-visual {
    right: -48px;
    width: 860px;
    transform: perspective(1500px) rotateY(-10deg) rotateX(1.5deg) scale(0.93);
  }
  .agent-expert-rail {
    right: 70px;
  }
}

/* OraAgent page section rhythm */
.agent-product-preview,
.agent-demo-section,
.wb-content-section,
.wb-content-band {
  scroll-margin-top: 90px;
}

.agent-product-preview,
.agent-demo-section,
#experts.wb-content-band {
  padding-top: 64px;
  padding-bottom: 70px;
}

.wb-content-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.wb-band-head {
  margin-bottom: 34px;
}

.wb-band-head p {
  margin-bottom: 10px;
  font-size: 13px;
}

.wb-band-head h2,
.wb-section-title h2 {
  font-size: clamp(30px, 2.7vw, 42px);
  line-height: 1.12;
}

.agent-product-preview .wb-band-head h2 {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: 1.08;
}

.wb-section-title {
  margin-bottom: 34px;
}

.wb-section-title p {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.75;
}

.agent-product-preview-inner {
  gap: 44px;
  align-items: center;
}

.agent-product-copy span {
  font-size: clamp(24px, 2.15vw, 36px);
  line-height: 1.18;
}

.agent-product-copy p {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.8;
}

.agent-product-screen {
  border-radius: 18px;
}

.agent-flow-grid {
  gap: 16px;
}

.agent-flow-grid article {
  padding: 24px;
  border-radius: 12px;
}

.agent-flow-grid h3 {
  font-size: 20px;
}

.agent-flow-grid p,
.agent-expert-grid p {
  font-size: 15px;
  line-height: 1.72;
}

.agent-demo-shell .wb-agent-demo {
  min-height: 620px;
}

.agent-demo-section .wb-band-head h2 {
  font-size: clamp(34px, 3.2vw, 52px);
}

.agent-expert-grid {
  gap: 16px;
}

.agent-expert-grid article {
  min-height: 190px;
  padding: 20px;
}

.agent-expert-grid img {
  width: 112px;
  height: 136px;
}

.agent-skill-expand {
  padding-top: 64px;
  padding-bottom: 64px;
}

.agent-skill-expand h2 {
  font-size: clamp(30px, 3vw, 42px);
}

.agent-final-cta {
  padding-top: 86px;
  padding-bottom: 88px;
}

.agent-final-cta h2 {
  font-size: clamp(40px, 4.4vw, 78px);
}

/* OraAgent hero v2: replace software mockup with a clean workflow panel */
@media (min-width: 1201px) {
  .agent-hero-command {
    min-height: 780px;
    padding: 118px 68px 64px;
  }
  .agent-hero-grid {
    display: grid;
    grid-template-columns: minmax(560px, 0.98fr) minmax(460px, 0.78fr);
    align-items: center;
    gap: clamp(56px, 5.2vw, 92px);
    width: min(1360px, 100%);
    height: auto;
    margin: 0 auto;
  }
  .agent-hero-copy {
    width: auto;
    max-width: 800px;
  }
  .agent-hero-badge {
    margin-bottom: 28px;
  }
  .agent-hero-command h1 {
    max-width: 800px;
    font-size: clamp(70px, 4.82vw, 88px);
  }
  .agent-hero-command .wb-sub-desc {
    max-width: 720px;
    margin-top: 28px;
    font-size: clamp(18px, 1.18vw, 22px);
  }
  .agent-hero-line {
    width: auto;
    margin-top: 30px;
    text-align: left;
    font-size: clamp(20px, 1.35vw, 25px);
  }
  .agent-hero-line:before,
  .agent-hero-line:after {
    display: none;
  }
  .agent-hero-command .wb-sub-actions {
    width: auto;
    max-width: none;
    grid-template-columns: 260px 205px 205px;
    justify-content: flex-start;
    margin: 34px 0 0;
    transform: none;
  }
  .agent-hero-command .wb-sub-actions .wb-download {
    height: 60px;
    border-radius: 8px;
  }
  .agent-hero-command .agent-hero-tags {
    width: auto;
    max-width: 720px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 24px 0 0;
    transform: none;
  }
  .agent-command-visual.agent-flow-visual {
    position: relative;
    inset: auto;
    z-index: 3;
    width: 100%;
    max-width: 560px;
    justify-self: start;
    min-height: auto;
    transform: none;
    filter: none;
  }
  .agent-command-visual.agent-flow-visual:before,
  .agent-command-visual.agent-flow-visual:after {
    display: none;
  }
  .agent-flow-panel {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 22px;
    background:
      radial-gradient(circle at 22% 0%, rgba(50, 230, 185, 0.18), transparent 32%),
      linear-gradient(145deg, rgba(13, 31, 38, 0.88), rgba(7, 13, 18, 0.82));
    border: 1px solid rgba(50, 230, 185, 0.22);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), inset 0 0 36px rgba(50, 230, 185, 0.03);
    backdrop-filter: blur(18px);
  }
  .agent-flow-panel:before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(239, 238, 236, 0.06);
    border-radius: 12px;
    pointer-events: none;
  }
  .agent-flow-head {
    position: relative;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(239, 238, 236, 0.08);
  }
  .agent-flow-head span {
    display: block;
    margin-bottom: 8px;
    color: #32e6b9;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
  }
  .agent-flow-head b {
    display: block;
    color: #fff;
    font-size: clamp(24px, 1.7vw, 30px);
    line-height: 1.18;
  }
  .agent-flow-head p {
    max-width: 560px;
    margin: 9px 0 0;
    color: rgba(239, 238, 236, 0.64);
    font-size: 13px;
    line-height: 1.62;
  }
  .agent-flow-board {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 16px;
  }
  .agent-flow-board article {
    position: relative;
    display: grid;
    grid-template-columns: 28px 30px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    min-height: 70px;
    padding: 10px;
    border-radius: 9px;
    background: rgba(239, 238, 236, 0.045);
    border: 1px solid rgba(239, 238, 236, 0.075);
    transition: 0.18s ease;
  }
  .agent-flow-board article:nth-child(1),
  .agent-flow-board article:nth-child(5) {
    border-color: rgba(50, 230, 185, 0.28);
    background: rgba(50, 230, 185, 0.075);
  }
  .agent-flow-board article:hover {
    transform: translateY(-2px);
    border-color: rgba(50, 230, 185, 0.34);
  }
  .agent-flow-board i {
    color: rgba(50, 230, 185, 0.84);
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.08em;
  }
  .agent-flow-board svg {
    width: 24px;
    height: 24px;
    color: rgba(239, 255, 251, 0.9);
    stroke-width: 1.8;
  }
  .agent-flow-board b {
    display: block;
    margin-bottom: 2px;
    color: #fff;
    font-size: 14px;
    line-height: 1.25;
  }
  .agent-flow-board span {
    display: block;
    color: rgba(239, 238, 236, 0.58);
    font-size: 11px;
    line-height: 1.45;
  }
  .agent-flow-summary {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(50, 230, 185, 0.1);
    border: 1px solid rgba(50, 230, 185, 0.2);
  }
  .agent-flow-summary strong {
    flex: 0 0 auto;
    color: #32e6b9;
    font-size: 13px;
  }
  .agent-flow-summary span {
    color: rgba(239, 238, 236, 0.78);
    font-size: 12px;
    line-height: 1.55;
  }
}

@media (min-width: 1201px) and (max-width: 1450px) {
  .agent-hero-grid {
    grid-template-columns: minmax(500px, 0.98fr) minmax(430px, 0.78fr);
    gap: 44px;
  }
  .agent-hero-command h1 {
    font-size: 68px;
  }
  .agent-hero-command .wb-sub-actions {
    grid-template-columns: 235px 185px 185px;
  }
  .agent-command-visual.agent-flow-visual {
    max-width: 520px;
  }
  .agent-flow-panel {
    padding: 20px;
  }
  .agent-flow-board article {
    grid-template-columns: 26px 28px minmax(0, 1fr);
    gap: 8px;
    min-height: 68px;
  }
}

@media (max-width: 1200px) {
  .agent-flow-visual {
    display: block;
    width: min(900px, 100%);
    margin: 34px auto 0;
  }
  .agent-flow-panel {
    padding: 22px;
    border-radius: 18px;
    background: rgba(10, 18, 25, 0.74);
    border: 1px solid rgba(50, 230, 185, 0.2);
  }
  .agent-flow-head b {
    font-size: 28px;
  }
  .agent-flow-board {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 18px;
  }
  .agent-flow-board article {
    display: grid;
    grid-template-columns: 30px 32px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(239, 238, 236, 0.045);
    border: 1px solid rgba(239, 238, 236, 0.08);
  }
  .agent-flow-board svg {
    width: 26px;
    height: 26px;
  }
  .agent-flow-board b {
    color: #fff;
  }
  .agent-flow-board span {
    color: rgba(239, 238, 236, 0.6);
    font-size: 12px;
  }
  .agent-flow-summary {
    margin-top: 14px;
    padding: 14px;
    background: rgba(50, 230, 185, 0.08);
    border: 1px solid rgba(50, 230, 185, 0.18);
  }
}

@media (max-width: 720px) {
  .agent-flow-board {
    grid-template-columns: 1fr;
  }
  .agent-flow-summary {
    display: block;
  }
  .agent-flow-summary span {
    display: block;
    margin-top: 6px;
  }
}

/* OraAgent final draft: compact hero, lighter workflow card, smaller product screenshot */
@media (min-width: 1201px) {
  .agent-hero-command {
    min-height: 720px;
    padding: 112px 64px 54px;
  }
  .agent-hero-grid {
    width: min(1320px, 100%);
    grid-template-columns: minmax(560px, 0.98fr) 520px;
    gap: clamp(58px, 5.4vw, 96px);
  }
  .agent-hero-copy {
    max-width: 760px;
  }
  .agent-hero-badge {
    min-height: 38px;
    margin-bottom: 22px;
    padding: 0 16px;
    font-size: 17px;
  }
  .agent-hero-command h1 {
    max-width: 760px;
    font-size: clamp(66px, 4.55vw, 82px);
    line-height: 1;
  }
  .agent-hero-command .wb-sub-desc {
    max-width: 700px;
    margin-top: 22px;
    font-size: clamp(17px, 1.02vw, 20px);
    line-height: 1.72;
  }
  .agent-hero-line {
    margin-top: 24px;
    font-size: clamp(19px, 1.18vw, 22px);
  }
  .agent-hero-command .wb-sub-actions {
    grid-template-columns: 250px 198px 198px;
    gap: 12px;
    margin-top: 30px;
  }
  .agent-hero-command .wb-sub-actions .wb-download {
    height: 58px;
    font-size: 17px;
  }
  .agent-command-visual.agent-flow-visual {
    max-width: 520px;
    align-self: center;
  }
  .agent-flow-panel {
    padding: 20px;
    border-radius: 14px;
    background:
      radial-gradient(circle at 20% 0%, rgba(50, 230, 185, 0.12), transparent 34%),
      linear-gradient(145deg, rgba(13, 31, 38, 0.72), rgba(7, 13, 18, 0.72));
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.3), inset 0 0 28px rgba(50, 230, 185, 0.025);
  }
  .agent-flow-panel:before {
    inset: 10px;
    border-radius: 10px;
  }
  .agent-flow-head {
    padding-bottom: 14px;
  }
  .agent-flow-head span {
    margin-bottom: 6px;
    font-size: 10px;
  }
  .agent-flow-head b {
    font-size: clamp(22px, 1.55vw, 27px);
  }
  .agent-flow-head p {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.55;
  }
  .agent-flow-board {
    gap: 8px;
    margin-top: 14px;
  }
  .agent-flow-board article {
    grid-template-columns: 24px 26px minmax(0, 1fr);
    min-height: 62px;
    gap: 8px;
    padding: 9px;
    border-radius: 8px;
  }
  .agent-flow-board i {
    font-size: 10px;
  }
  .agent-flow-board svg {
    width: 21px;
    height: 21px;
  }
  .agent-flow-board b {
    font-size: 13px;
  }
  .agent-flow-board span {
    font-size: 10.5px;
    line-height: 1.38;
  }
  .agent-flow-summary {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 8px;
  }
  .agent-flow-summary strong,
  .agent-flow-summary span {
    font-size: 11.5px;
  }
}

.agent-product-preview {
  padding-top: 50px;
  padding-bottom: 56px;
}

.agent-product-preview .wb-band-head {
  margin-bottom: 28px;
}

.agent-product-preview .wb-band-head h2 {
  max-width: 760px;
  font-size: clamp(30px, 2.8vw, 42px);
}

.agent-product-preview-inner {
  width: min(1180px, 100%);
  grid-template-columns: minmax(300px, 0.48fr) minmax(500px, 0.78fr);
  gap: 30px;
}

.agent-product-copy span {
  font-size: clamp(22px, 1.7vw, 30px);
}

.agent-product-copy p {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.72;
}

.agent-product-screen {
  max-width: 720px;
  justify-self: end;
  padding: 8px;
  border-radius: 14px;
}

.agent-product-screen img {
  border-radius: 10px;
}

.agent-demo-section,
#experts.wb-content-band {
  padding-top: 58px;
  padding-bottom: 64px;
}

.wb-content-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.wb-band-head h2,
.wb-section-title h2 {
  font-size: clamp(28px, 2.45vw, 38px);
}

.agent-demo-section .wb-band-head h2 {
  font-size: clamp(30px, 2.8vw, 44px);
}

.agent-demo-shell .wb-agent-demo {
  min-height: 560px;
}

.agent-flow-grid article,
.agent-expert-grid article {
  border-radius: 10px;
}

.agent-final-cta {
  padding-top: 72px;
  padding-bottom: 76px;
}

.agent-final-cta h2 {
  font-size: clamp(38px, 4vw, 68px);
}

@media (min-width: 1201px) and (max-width: 1450px) {
  .agent-hero-grid {
    width: min(1240px, 100%);
    grid-template-columns: minmax(500px, 0.98fr) 470px;
    gap: 44px;
  }
  .agent-command-visual.agent-flow-visual {
    max-width: 470px;
  }
  .agent-hero-command .wb-sub-actions {
    grid-template-columns: 230px 178px 178px;
  }
  .agent-flow-board article {
    min-height: 60px;
  }
  .agent-flow-board span {
    display: none;
  }
}

/* Keep final OraAgent page close to the live Workbuddy rhythm */
@media (min-width: 1201px) {
  .agent-hero-command {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 34px;
  }
  .agent-hero-grid {
    align-items: center;
  }
  .agent-product-preview {
    margin-top: 0;
  }
}
