.home-layout,
.ws-page {
  --home-motion-duration: 0.36s;
  --home-motion-duration-slow: 0.55s;
  --home-motion-delay: 0.05s;
  --home-motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes home-pane-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes home-scroll-reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-layout,
  .ws-page {
    --home-motion-duration: 0.01ms;
    --home-motion-duration-slow: 0.01ms;
    --home-motion-delay: 0ms;
  }
}
.ws-container {
  --ws-primary: var(--primary, #1677ff);
  --ws-bg: var(--background, #ffffff);
  --ws-bg-sub: var(--backgroundSecondary, #f5f5f5);
  --ws-text: var(--text, #000);
  --ws-text-sub: var(--textSecondary, #666);
  --ws-border: var(--border, #e5e5e5);
  --ws-radius: 24px;
  padding: 56px 0 80px;
  max-width: var(--home-content-max-width, 1040px);
  margin: 0 auto;
  position: relative;
}
.ws-page {
  position: relative;
  z-index: 1;
}
.ws-reveal {
  opacity: 1;
  transform: translateY(0);
}
.ws-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.ws-faq-section.is-visible .ws-faq-item {
  animation: home-scroll-reveal var(--home-motion-duration-slow) var(--home-motion-ease) both;
}
.ws-faq-section.is-visible .ws-faq-item:nth-child(1) {
  animation-delay: 0s;
}
.ws-faq-section.is-visible .ws-faq-item:nth-child(2) {
  animation-delay: 0.06s;
}
.ws-faq-section.is-visible .ws-faq-item:nth-child(3) {
  animation-delay: 0.12s;
}
.ws-faq-section.is-visible .ws-faq-item:nth-child(4) {
  animation-delay: 0.18s;
}
.ws-faq-section {
  position: relative;
  z-index: 2;
  padding-top: 64px;
  margin-bottom: 88px;
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}
.ws-section--editorial {
  text-align: left;
}
.ws-section--editorial .ws-faq-head {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}
.ws-section--editorial .ws-builder-cta {
  align-self: flex-start;
}
.ws-section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--primary, #1677ff);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ws-section-title {
  margin: 0 0 12px;
  color: var(--ws-text);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.ws-section-desc {
  margin: 0;
  color: var(--ws-text-sub);
  font-size: 1.05rem;
  line-height: 1.65;
}
.ws-faq-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.ws-faq-accordion {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ws-faq-item {
  border-radius: 18px;
  border: 1px solid var(--borderLight, #e5e5e5);
  background: var(--background);
  box-shadow: 0 10px 24px -22px var(--shadowMedium);
  overflow: hidden;
  transition: border-color var(--home-motion-duration) ease, box-shadow var(--home-motion-duration) ease;
}
.ws-faq-item.is-open {
  border-color: var(--primaryGhost, rgba(22, 119, 255, 0.28));
  box-shadow: 0 14px 28px -18px var(--shadowMedium), 0 4px 12px var(--primaryGhost, rgba(22, 119, 255, 0.06));
}
.ws-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: var(--ws-text);
  font: inherit;
}
.ws-faq-trigger-text {
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.ws-faq-trigger-icon {
  flex-shrink: 0;
  color: var(--ws-text-sub);
  transition: transform var(--home-motion-duration) var(--home-motion-ease);
}
.ws-faq-item.is-open .ws-faq-trigger-icon {
  transform: rotate(180deg);
  color: var(--primary, #1677ff);
}
.ws-faq-trigger:hover .ws-faq-trigger-text,
.ws-faq-trigger:focus-visible .ws-faq-trigger-text {
  color: var(--primary, #1677ff);
}
.ws-faq-trigger:focus-visible {
  outline: 2px solid var(--primary, #1677ff);
  outline-offset: -2px;
}
.ws-faq-panel {
  padding: 0 22px 20px;
}
.ws-faq-panel p {
  margin: 0;
  color: var(--ws-text-sub);
  font-size: 0.95rem;
  line-height: 1.65;
}
.ws-bottom-cta.ws-final-cta {
  content-visibility: auto;
  contain-intrinsic-size: auto 320px;
}
.ws-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@supports (content-visibility: auto) {
  .ws-grid {
    content-visibility: auto;
    contain-intrinsic-size: 760px;
  }
}
.ws-card {
  background: var(--ws-bg-sub);
  border-radius: var(--ws-radius);
  padding: 8px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
}
.ws-card:hover {
  background: var(--ws-bg);
  border-color: var(--ws-border);
  box-shadow: 0 16px 32px -12px rgba(0, 0, 0, 0.06);
}
.ws-card-visual {
  background: var(--ws-bg);
  border-radius: 18px;
  height: 280px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.ws-card-night .ws-card-visual {
  background:
    linear-gradient(
      160deg,
      #1e293b,
      #0f172a);
  border: 1px solid #334155;
}
.ws-card-text {
  padding: 0 24px 24px;
  text-align: left;
}
.ws-card-text h3 {
  font-size: 1.4rem;
  margin: 0 0 8px;
  color: var(--textHeading, var(--ws-text));
  letter-spacing: -0.02em;
}
.ws-card-text p {
  font-size: 1rem;
  margin: 0;
  color: var(--ws-text-sub);
  line-height: 1.5;
}
.ws-flow-pipeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}
.ws-input-zone {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.ws-file-pill {
  background: var(--ws-bg);
  border: 1px solid var(--ws-border);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8125rem;
  display: flex;
  gap: 6px;
  align-items: center;
  color: var(--ws-text-sub);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.ws-file-pill-rule {
  background: var(--primaryGhost, rgba(22, 119, 255, 0.1));
  border-color: rgba(22, 119, 255, 0.24);
  color: var(--ws-text);
}
.ws-stream-line {
  width: 2px;
  height: 60px;
  background: var(--ws-border);
  position: relative;
  margin: 4px 0;
  overflow: hidden;
}
.ws-stream-pulse {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background:
    linear-gradient(
      to bottom,
      transparent,
      var(--ws-primary),
      transparent);
  animation: ws-stream 2s infinite;
}
.ws-output-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  width: 200px;
}
.ws-ai-badge {
  color: #06b6d4;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ws-chat-bubble {
  background: #ecfeff;
  color: #164e63;
  padding: 12px;
  border-radius: var(--radius-lg);
  font-size: var(--fontSize-base);
  width: 100%;
  border: 1px solid #cffafe;
  opacity: 0;
  animation: ws-pop-in 0.5s forwards 1s;
}
.ws-memory-replay {
  margin-top: 2px;
  display: flex;
  gap: 6px;
}
.ws-memory-step {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--ws-text);
  background: var(--ws-bg);
  border: 1px solid var(--ws-border);
  opacity: 0.45;
  animation: ws-memory-step 2.4s ease-in-out infinite;
}
.ws-memory-step:nth-child(2) {
  animation-delay: 0.25s;
}
.ws-memory-step:nth-child(3) {
  animation-delay: 0.5s;
}
.ws-council-system {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-16px);
}
.ws-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0, 0, 0, 0.1);
  pointer-events: none;
}
.ring-1 {
  width: 110px;
  height: 110px;
  animation: ws-spin 40s linear infinite;
}
.ws-core-energy {
  width: 44px;
  height: 44px;
  background: var(--ws-bg);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ws-primary);
  z-index: 5;
}
.ws-model-avatar {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 4;
}
.ws-avatar-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.ws-avatar-name {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--ws-text-sub);
  line-height: 1;
  white-space: nowrap;
}
.pos-gpt {
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
  animation: ws-float 4s ease-in-out infinite;
}
.pos-gemini {
  top: 87px;
  left: calc(50% + 52px);
  transform: translateX(-50%);
  animation: ws-float-b 4.5s ease-in-out infinite 0.3s;
}
.pos-claude {
  top: 149px;
  left: calc(50% + 32px);
  transform: translateX(-50%);
  animation: ws-float-b 5s ease-in-out infinite 0.8s;
}
.pos-deepseek {
  top: 149px;
  left: calc(50% - 32px);
  transform: translateX(-50%);
  animation: ws-float-b 6s ease-in-out infinite 1.2s;
}
.pos-kimi {
  top: 87px;
  left: calc(50% - 52px);
  transform: translateX(-50%);
  animation: ws-float-b 5.5s ease-in-out infinite 1.8s;
}
.ws-success-dot {
  width: 16px;
  height: 16px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws-bloom-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws-magic-trigger {
  width: 56px;
  height: 56px;
  background: var(--ws-text);
  color: var(--ws-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ws-card-create:hover .ws-magic-trigger {
  transform: scale(1.1);
}
.ws-zap-icon {
  fill: currentColor;
}
.ws-bloom-beams {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.ws-beam {
  stroke: var(--ws-primary);
  stroke-width: 2;
  stroke-dasharray: 5;
  opacity: 0;
  transition: all 0.5s ease;
}
.ws-card-create:hover .ws-beam {
  opacity: 0.3;
  stroke-dashoffset: -10;
}
.ws-bloom-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0.5;
  transform: scale(0.8);
}
.item-doc {
  top: 18px;
  left: calc(50% - 20px);
}
.item-3d {
  top: 46px;
  left: 34px;
}
.item-web {
  top: 46px;
  right: 34px;
}
.item-image {
  bottom: 34px;
  left: 42px;
}
.item-video {
  bottom: 34px;
  right: 42px;
}
.ws-card-create:hover .item-doc {
  top: 10px;
  opacity: 1;
  transform: scale(1);
}
.ws-card-create:hover .item-3d {
  top: 36px;
  left: 24px;
  opacity: 1;
  transform: scale(1);
}
.ws-card-create:hover .item-web {
  top: 36px;
  right: 24px;
  opacity: 1;
  transform: scale(1);
}
.ws-card-create:hover .item-image {
  bottom: 24px;
  left: 30px;
  opacity: 1;
  transform: scale(1);
}
.ws-card-create:hover .item-video {
  bottom: 24px;
  right: 30px;
  opacity: 1;
  transform: scale(1);
}
.ws-icon-box {
  width: 40px;
  height: 40px;
  background: var(--ws-bg);
  border: 1px solid var(--ws-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: var(--ws-text);
}
.ws-label-tiny {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ws-text-sub);
}
.ws-visual-night {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.ws-night-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.ws-moon {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fefce8;
  opacity: 0.8;
}
.ws-star {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0;
  animation: ws-twinkle 3s infinite;
}
.s1 {
  width: 2px;
  height: 2px;
  top: 40%;
  left: 20%;
  animation-delay: 0s;
}
.s2 {
  width: 3px;
  height: 3px;
  top: 20%;
  left: 50%;
  animation-delay: 1s;
}
.s3 {
  width: 1px;
  height: 1px;
  bottom: 30%;
  right: 30%;
  animation-delay: 2s;
}
.ws-dawn-glow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44%;
  background:
    linear-gradient(
      180deg,
      rgba(251, 191, 36, 0),
      rgba(251, 191, 36, 0.18));
  opacity: 0;
  animation: ws-dawn 6s ease-in-out infinite;
}
.ws-workflow-dock {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}
.ws-flow-step {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ws-step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.step-done .ws-step-dot {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}
.step-active .ws-step-dot {
  background: #3b82f6;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}
.ws-step-line {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}
.ws-step-line.dashed {
  background: transparent;
  border-top: 1px dashed rgba(255, 255, 255, 0.3);
}
.ws-night-progress {
  width: 66px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
  margin-left: 4px;
}
.ws-night-progress-fill {
  width: 100%;
  height: 100%;
  transform-origin: left center;
  background:
    linear-gradient(
      90deg,
      #60a5fa,
      #facc15);
  animation: ws-progress-fill 3.2s ease-in-out infinite;
}
.ws-sleep-badge {
  margin-top: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.8125rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 99px;
}
@keyframes ws-stream {
  0% {
    top: -100%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
@keyframes ws-pop-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes ws-memory-step {
  0%, 100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}
@keyframes ws-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes ws-spin-rev {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes ws-float {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -6px);
  }
}
@keyframes ws-float-b {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-6px);
  }
}
@keyframes ws-flow-run {
  from {
    background-position: 0% 0%;
  }
  to {
    background-position: 200% 0%;
  }
}
@keyframes ws-twinkle {
  0%, 100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.5);
  }
}
@keyframes ws-dawn {
  0%, 20% {
    opacity: 0;
  }
  65% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
@keyframes ws-progress-fill {
  0% {
    transform: scaleX(0.12);
  }
  70% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0.32);
  }
}
.pulse {
  animation: ws-pulse 2s infinite;
}
@keyframes ws-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media (min-width: 769px) and (max-width: 960px) {
  .ws-cards-section .ws-grid {
    gap: 20px;
  }
  .ws-card-visual {
    height: 240px;
  }
}
@media (min-width: 769px) and (max-width: 900px) {
  .ws-cards-section .ws-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
  }
}
@media (max-width: 768px) {
  .ws-grid {
    grid-template-columns: 1fr;
  }
  .ws-cards-section .ws-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
  }
  .ws-cards-section {
    margin-bottom: 64px;
  }
  .ws-orchestration-section {
    margin-bottom: 64px;
  }
  .ws-orchestration-tabs {
    max-width: 100%;
    justify-content: flex-start;
  }
  .ws-orchestration-tabs .tab-item {
    font-size: 0.8rem;
    padding: 0 12px;
  }
  .ws-faq-trigger {
    padding: 18px 16px;
  }
  .ws-faq-panel {
    padding: 0 16px 18px;
  }
  .ws-hero-title {
    font-size: 2.1rem;
    line-height: 1.1;
  }
  .ws-hero-desc {
    font-size: 1.05rem;
  }
  .ws-hero-highlights {
    gap: 8px 14px;
    margin-top: 22px;
  }
  .ws-hero-highlights li {
    font-size: 0.82rem;
  }
  .ws-section-title {
    font-size: 1.55rem;
  }
  .ws-bottom-cta {
    padding: 48px 20px;
    margin-top: 48px;
  }
  .ws-bottom-cta-title {
    font-size: 1.55rem;
  }
  .ws-proof-bar {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
  }
  .ws-section--editorial {
    text-align: center;
  }
  .ws-section--editorial .ws-faq-head {
    text-align: center;
  }
  .ws-section--editorial .ws-builder-cta {
    align-self: center;
  }
  .ws-final-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .ws-final-cta-actions .ws-cta-btn {
    width: 100%;
    max-width: 320px;
  }
  .ws-builder-bridge {
    flex-direction: column;
    gap: 32px;
  }
  .ws-builder-bridge-caps {
    grid-template-columns: 1fr;
  }
  .ws-deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.ws-builder-bridge {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding: 48px 0 32px;
}
.ws-builder-bridge-lead {
  flex: 0 0 36%;
}
.ws-builder-bridge-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 8px 0 12px;
  color: var(--ws-text);
}
.ws-builder-bridge-desc {
  font-size: 0.9rem;
  color: var(--ws-text-sub);
  margin: 0 0 20px;
  line-height: 1.6;
}
.ws-builder-bridge-cta {
  font-size: 0.85rem;
  padding: 10px 22px;
}
.ws-builder-bridge-caps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  flex: 1;
}
.ws-builder-bridge-cap {
  padding: 18px;
  border-radius: var(--ws-radius, 24px);
  background: var(--ws-bg-sub);
  border: 1px solid var(--ws-border);
}
.ws-builder-bridge-cap h3 {
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ws-text);
}
.ws-builder-bridge-cap p {
  font-size: 0.8rem;
  color: var(--ws-text-sub);
  margin: 0;
  line-height: 1.55;
}
.ws-deliverables {
  padding: 32px 0 64px;
}
.ws-deliverables-head {
  text-align: center;
  margin-bottom: 32px;
}
.ws-deliverables-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 8px 0 12px;
  color: var(--ws-text);
}
.ws-deliverables-desc {
  font-size: 0.9rem;
  color: var(--ws-text-sub);
  margin: 0;
}
.ws-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.ws-deliverable-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--ws-radius, 24px);
  background: var(--ws-bg-sub);
  border: 1px solid var(--ws-border);
  transition: transform var(--home-motion-duration) var(--home-motion-ease), border-color var(--home-motion-duration) var(--home-motion-ease);
}
.ws-deliverable-card:hover {
  transform: translateY(-2px);
  border-color: var(--ws-primary);
}
.ws-deliverable-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ws-text);
  margin-bottom: 6px;
}
.ws-deliverable-example {
  font-size: 0.75rem;
  color: var(--ws-text-sub);
  opacity: 0.7;
}
@media (prefers-reduced-motion: reduce) {
  .ws-faq-section.is-visible .ws-faq-item {
    animation: none;
  }
}
.ws-hero {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
  padding-top: 8px;
  overflow: hidden;
}
.ws-hero::before {
  content: "";
  position: absolute;
  inset: -12% -8% auto;
  height: 72%;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(
      ellipse 72% 58% at 50% 18%,
      color-mix(in srgb, var(--primary, #1677ff) 14%, transparent) 0%,
      color-mix(in srgb, var(--accentMoss, var(--primary, #1677ff)) 6%, transparent) 42%,
      transparent 72%);
}
[data-theme=dark] .ws-hero::before {
  background:
    radial-gradient(
      ellipse 72% 58% at 50% 18%,
      color-mix(in srgb, var(--primary, #1677ff) 18%, transparent) 0%,
      color-mix(in srgb, var(--primary, #1677ff) 8%, transparent) 40%,
      transparent 70%);
}
.ws-hero-title {
  font-size: 4.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 28px;
  color: var(--ws-text);
}
.ws-gradient-text {
  background-image:
    linear-gradient(
      160deg,
      #333 0%,
      #000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
[data-theme=dark] .ws-gradient-text {
  background-image:
    linear-gradient(
      160deg,
      #e8edf3 0%,
      #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.ws-hero-desc {
  font-size: 1.05rem;
  color: var(--ws-text-sub);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0;
  animation: ws-hero-reveal var(--home-motion-duration-slow) var(--home-motion-ease) 0.16s forwards;
}
.ws-hero-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 28px auto 0;
  padding: 0;
  max-width: 640px;
  list-style: none;
}
.ws-hero-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--ws-text-sub);
  line-height: 1.4;
  opacity: 0;
  animation: ws-hero-reveal var(--home-motion-duration-slow) var(--home-motion-ease) forwards;
}
.ws-hero-highlights li:nth-child(1) {
  animation-delay: 0.24s;
}
.ws-hero-highlights li:nth-child(2) {
  animation-delay: 0.3s;
}
.ws-hero-highlights li:nth-child(3) {
  animation-delay: 0.36s;
}
.ws-hero-highlights li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accentMoss, var(--primary, #1677ff));
  opacity: 0.75;
  flex-shrink: 0;
}
.ws-cta-main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 44px;
  margin-bottom: 0;
  opacity: 0;
  animation: ws-hero-reveal var(--home-motion-duration-slow) var(--home-motion-ease) 0.44s forwards;
}
.ws-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 99px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
}
.ws-cta-lg {
  padding: 18px 48px;
  font-size: 1.15rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}
.ws-cta-primary {
  background: var(--ws-text);
  color: var(--ws-bg);
}
.ws-cta-primary:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.2);
}
.ws-cta-secondary {
  background: var(--backgroundSecondary);
  color: var(--textSecondary);
  box-shadow: inset 0 0 0 1px var(--ws-border), 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}
.ws-cta-secondary:hover {
  color: var(--primary);
  background: var(--background);
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px var(--primaryGhost),
    0 2px 4px 0 var(--shadowLight),
    0 8px 20px -2px var(--shadowMedium),
    0 16px 40px -4px var(--shadowMedium),
    0 4px 24px -2px var(--primaryGhost);
}
.ws-trust-micro {
  margin: 14px 0 0;
  font-size: 0.8rem;
  color: var(--ws-text-sub);
  letter-spacing: 0.015em;
  opacity: 0;
  animation: ws-hero-reveal-trust var(--home-motion-duration-slow) var(--home-motion-ease) 0.52s forwards;
}
.ws-trust-local {
  margin: 4px 0 0;
  font-size: 0.72rem;
  color: var(--ws-text-sub);
  letter-spacing: 0.02em;
  opacity: 0;
  animation: ws-hero-reveal-trust var(--home-motion-duration-slow) var(--home-motion-ease) 0.6s forwards;
}
.ws-trust-local {
  opacity: 0.5;
}
.ws-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 52px;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: ws-hero-reveal var(--home-motion-duration-slow) var(--home-motion-ease) 0.58s forwards;
}
@keyframes ws-hero-reveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ws-hero-reveal-trust {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 0.65;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ws-hero-desc,
  .ws-hero-highlights li,
  .ws-cta-main,
  .ws-trust-micro,
  .ws-proof-bar {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .ws-trust-micro {
    opacity: 0.65;
  }
}
.ws-proof-models {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ws-text-sub);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.ws-proof-bar:hover .ws-proof-models {
  opacity: 0.72;
}
.ws-proof-sep {
  width: 28px;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--ws-border),
      transparent);
  opacity: 0.85;
  flex-shrink: 0;
}
.ws-proof-platforms {
  font-size: 0.78rem;
  color: var(--ws-text-sub);
  opacity: 0.55;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.ws-proof-platforms:hover,
.ws-proof-platforms:focus-visible {
  color: var(--primary, #1677ff);
  opacity: 0.85;
  outline: none;
}
.ws-cards-section {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
  padding: 0 20px;
}
.ws-cards-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.ws-cards-section .ws-grid {
  max-width: 720px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.ws-cards-section .ws-grid--single {
  max-width: 640px;
  grid-template-columns: 1fr;
  margin: 0 auto;
}
.ws-card-create .ws-card-text h2 {
  font-size: 1.4rem;
  margin: 0 0 8px;
  color: var(--textHeading, var(--ws-text));
  letter-spacing: -0.02em;
}
.ws-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 16px;
}
.ws-card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary, #1677ff);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.ws-card-link:hover {
  opacity: 0.75;
  text-decoration: underline;
}
.ws-bottom-cta {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  padding: 56px 32px 52px;
  border-radius: var(--ws-radius);
  background: var(--background);
  border: 1px solid var(--borderLight, #e5e5e5);
  box-shadow: 0 16px 40px -28px var(--shadowMedium);
  text-align: center;
}
.ws-bottom-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ws-bottom-cta-title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--ws-text);
  max-width: 480px;
}
.ws-bottom-cta-desc {
  margin: 0;
  font-size: 1rem;
  color: var(--ws-text-sub);
  line-height: 1.65;
  max-width: 420px;
}
.ws-bottom-cta-btn {
  margin-top: 8px;
}
[data-theme=dark] .ws-bottom-cta {
  background: var(--background);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px -28px rgba(0, 0, 0, 0.35);
}
.ws-builder-section {
  max-width: 880px;
  margin: 0 auto 96px;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.ws-builder-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surfaceInteractive, var(--backgroundSecondary));
  border: 1px solid var(--borderMuted, var(--borderLight));
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 18px;
  box-shadow: none;
}
[data-theme=dark] .ws-builder-badge {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.ws-builder-badge span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ws-text-sub);
  text-transform: none;
}
.ws-builder-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--ws-text);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.ws-builder-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ws-text-sub);
  margin: 0 auto 44px;
  max-width: 640px;
}
.ws-builder-timeline {
  text-align: left;
  max-width: 480px;
  margin: 0 auto 40px;
}
.ws-builder-step {
  display: flex;
  gap: 18px;
  position: relative;
  opacity: 0;
  transform: translateY(12px);
  animation: ws-builder-step-in 0.5s ease forwards;
}
.ws-builder-step:nth-child(1) {
  animation-delay: 0s;
}
.ws-builder-step:nth-child(2) {
  animation-delay: 0.08s;
}
.ws-builder-step:nth-child(3) {
  animation-delay: 0.16s;
}
.ws-builder-step:nth-child(4) {
  animation-delay: 0.24s;
}
.ws-builder-step:nth-child(5) {
  animation-delay: 0.32s;
}
.ws-builder-step:nth-child(6) {
  animation-delay: 0.40s;
}
@keyframes ws-builder-step-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ws-builder-node {
  flex-shrink: 0;
  width: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}
.ws-builder-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ws-border);
  border: 2px solid var(--ws-bg);
  box-shadow: 0 0 0 1px var(--ws-border);
  transition: all 0.3s ease;
}
.ws-builder-step:hover .ws-builder-dot {
  background: var(--ws-primary);
  box-shadow: 0 0 0 1px var(--ws-primary);
  transform: scale(1.3);
}
.ws-builder-line {
  width: 1px;
  flex: 1;
  min-height: 48px;
  background: var(--ws-border);
  margin: 8px 0 0;
}
.ws-builder-content {
  padding-bottom: 32px;
}
.ws-builder-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ws-text);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.ws-builder-content p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ws-text-sub);
  margin: 0;
}
.ws-builder-cta {
  display: inline-flex;
}
.ws-builder-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto 44px;
  text-align: left;
}
.ws-builder-capability {
  padding: 26px 24px;
  background: var(--surfaceRaised, var(--background));
  border: 1px solid var(--borderMuted, var(--borderLight));
  border-radius: 20px;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
  position: relative;
}
[data-theme=dark] .ws-builder-capability {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.07);
}
.ws-builder-capability:hover {
  border-color: var(--primaryGhost, rgba(22, 119, 255, 0.28));
  background: var(--surfaceInteractiveHover, var(--backgroundHover));
  box-shadow: 0 12px 28px -22px var(--shadowMedium);
}
[data-theme=dark] .ws-builder-capability:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
.ws-builder-capability h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ws-text);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.ws-builder-capability p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ws-text-sub);
  margin: 0;
}
@media (max-width: 768px) {
  .ws-builder-capabilities {
    grid-template-columns: 1fr;
  }
}
.ws-builder-memory {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 480px;
  margin: 0 auto 40px;
  padding: 24px;
  background: var(--ws-bg-sub);
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius);
  text-align: left;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.ws-builder-memory:hover {
  border-color: var(--primaryGhost, rgba(22, 119, 255, 0.3));
  box-shadow: 0 16px 32px -16px var(--shadowMedium), 0 4px 12px var(--primaryGhost, rgba(22, 119, 255, 0.06));
}
.ws-builder-memory-visual {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 18px;
  background: var(--ws-bg);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (prefers-reduced-motion: reduce) {
  .ws-hero-desc,
  .ws-hero-highlights li,
  .ws-cta-main,
  .ws-trust-micro,
  .ws-proof-bar,
  .ws-reveal {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .ws-trust-micro {
    opacity: 0.65;
  }
}
.ws-orchestration-section {
  position: relative;
  z-index: 2;
  margin-bottom: 72px;
  padding: 0 20px;
}
.ws-orchestration-head {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}
.ws-orchestration-tabs {
  display: flex;
  justify-content: center;
  margin: 0 auto 28px;
  max-width: 680px;
  width: 100%;
}
.ws-orchestration-tabs .tabs {
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-columns: unset;
  grid-auto-flow: unset;
}
.ws-orchestration-tabs .tab-item {
  min-width: 0;
  padding: 0 10px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ws-text-sub);
}
.ws-orchestration-tabs .tab-item[data-active=true] {
  color: var(--ws-text);
  font-weight: 650;
}
[data-theme=dark] .ws-orchestration-tabs .tabs {
  border-color: color-mix(in srgb, var(--borderLight) 78%, transparent);
  background: color-mix(in srgb, var(--surfaceInteractive, var(--backgroundSecondary)) 90%, transparent);
}
[data-theme=dark] .ws-orchestration-tabs .tabs::after {
  background: color-mix(in srgb, var(--background) 72%, #ffffff 28%);
  border: 1px solid color-mix(in srgb, var(--borderLight) 70%, #ffffff 30%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
[data-theme=dark] .ws-orchestration-tabs .tab-item[data-active=true] {
  color: var(--primary, #1677ff);
}
.ws-orchestration-panel {
  max-width: 960px;
  margin: 0 auto;
}
.ws-orchestration-example-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary, #1677ff);
  margin: 0 0 12px;
}
.ws-orchestration-panel-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ws-text);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.ws-orchestration-footnote {
  max-width: 640px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--ws-text-sub);
  opacity: 0.75;
  line-height: 1.55;
}
.ws-orchestration-tab-body {
  animation: ws-orchestration-tab-in var(--home-motion-duration) var(--home-motion-ease) var(--home-motion-delay) both;
}
.ws-orchestration-stage {
  position: relative;
}
@keyframes ws-orchestration-tab-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ws-workflow-showcase {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}
.wf-stage-tech {
  width: 100%;
  max-width: var(--wf-stage-width, 780px);
  aspect-ratio: var(--wf-stage-aspect, 780 / 300);
  height: auto;
  background: transparent;
  border: none;
  border-radius: 0;
  position: relative;
  overflow: visible;
  margin: 0 auto 24px;
  box-shadow: none;
}
[data-theme=dark] .wf-stage-tech {
  background: transparent;
  border: none;
  box-shadow: none;
}
.ws-orchestration-brief {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  z-index: 12;
  max-width: calc(100% - 40px);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ws-text);
  line-height: 1.45;
  text-align: center;
}
.wf-stage-tech--brainstorm .wf-node-label,
.wf-stage-tech--consensus .wf-node-label,
.wf-stage-tech--video .wf-node-label {
  max-width: 76px;
  font-size: 11px;
  line-height: 1.3;
  text-align: center;
}
.wf-icon-core.is-brand-openai {
  background: #10a37f;
  color: #fff;
  border-color: transparent;
}
.wf-icon-core.is-brand-grok {
  background: #111;
  color: #fff;
  border-color: transparent;
}
.wf-icon-core.is-brand-gemini {
  background: #4285f4;
  color: #fff;
  border-color: transparent;
}
.wf-icon-core.is-orchestrator {
  color: var(--primary, #1677ff);
  border-color: rgba(22, 119, 255, 0.28);
  background: var(--primaryGhost, rgba(22, 119, 255, 0.1));
}
.wf-consensus-output {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: calc(100% - 40px);
  z-index: 12;
}
.wf-consensus-pill {
  padding: 6px 12px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ws-text-sub);
  background: var(--ws-bg);
  border: 1px solid var(--ws-border);
}
.wf-consensus-pill-primary {
  color: var(--primary, #1677ff);
  border-color: rgba(22, 119, 255, 0.28);
  background: var(--primaryGhost, rgba(22, 119, 255, 0.1));
}
.wf-icon-core.is-deliver {
  color: var(--primary, #1677ff);
  border-color: rgba(22, 119, 255, 0.28);
  background: var(--primaryGhost, rgba(22, 119, 255, 0.1));
}
.ws-workflow-section {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}
.wf-stage-scroll {
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 0 20px 8px;
}
.wf-stage-scroll--desktop {
  margin-bottom: 0;
}
.wf-mobile-steps {
  display: none;
  list-style: none;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 560px;
}
.wf-mobile-step {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--borderLight, #e5e5e5);
}
.wf-mobile-step:last-child {
  border-bottom: none;
}
.wf-mobile-step-index {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary, #1677ff);
  background: var(--primaryGhost, rgba(22, 119, 255, 0.1));
}
.wf-mobile-step-copy h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ws-text);
}
.wf-mobile-step-copy p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ws-text-sub);
}
@media (max-width: 768px) {
  .wf-stage-scroll--desktop {
    display: none;
  }
  .wf-mobile-steps {
    display: block;
  }
  .ws-workflow-section {
    margin-bottom: 64px;
  }
}
.wf-autonomous-badge {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  background: var(--ws-bg-sub);
  border: 1px solid var(--ws-border);
  padding: 7px 16px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
[data-theme=dark] .wf-autonomous-badge {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.08);
}
.wf-autonomous-badge span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ws-text);
  text-transform: uppercase;
}
.wf-pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #10b981;
  animation: badgeDotPulse 1.8s infinite;
}
@keyframes badgeDotPulse {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1.1);
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}
.wf-svg-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.wf-tracks path {
  fill: none;
  stroke: var(--ws-primary);
  stroke-width: 2px;
  opacity: 0.32;
}
.wf-tracks path.t-reject {
  stroke: #ef4444;
  opacity: 0.42;
  stroke-dasharray: 5 6;
}
[data-theme=dark] .wf-tracks path {
  stroke: #ffffff;
  opacity: 0.24;
}
[data-theme=dark] .wf-tracks path.t-reject {
  stroke: #f87171;
  opacity: 0.45;
}
.wf-packets path {
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-dasharray: 20 180;
  stroke-dashoffset: 0;
}
.p-chat,
.p-form {
  stroke: var(--ws-primary);
  animation: flow-input 18s linear infinite;
  opacity: 0.72;
}
.p-pm-fe,
.p-pm-be {
  stroke: var(--ws-primary);
  animation: flow-dispatch 18s linear infinite;
  opacity: 0.72;
}
.p-fe-rev1,
.p-be-rev1 {
  stroke: var(--ws-primary);
  animation: flow-submit1 18s linear infinite;
  opacity: 0.72;
}
.p-reject-fe,
.p-reject-be {
  stroke: #d97757;
  stroke-dasharray: 12 180;
  animation: flow-reject 18s linear infinite;
  opacity: 0.62;
}
.p-fe-rev2,
.p-be-rev2 {
  stroke: var(--ws-primary);
  animation: flow-submit2 18s linear infinite;
  opacity: 0.72;
}
.p-release,
.p-website {
  stroke: var(--ws-primary);
  animation: flow-release 18s linear infinite;
  opacity: 0.78;
}
.p-website {
  animation-name: flow-website;
}
.p-b-gpt,
.p-b-grok,
.p-b-gemini,
.p-v-script,
.p-v-storyboard,
.p-v-visual {
  stroke: var(--ws-primary);
  animation: flow-orch-dispatch 18s linear infinite;
  opacity: 0.72;
}
.p-c-gpt,
.p-c-grok,
.p-c-gemini {
  stroke: var(--ws-primary);
  animation: flow-orch-dispatch 18s linear infinite;
  opacity: 0.72;
}
.p-v-script-edit {
  stroke: var(--ws-primary);
  animation: flow-v-script-edit 18s linear infinite;
  opacity: 0.72;
}
.p-v-storyboard-edit {
  stroke: var(--ws-primary);
  animation: flow-v-storyboard-edit 18s linear infinite;
  opacity: 0.72;
}
.p-v-visual-edit {
  stroke: var(--ws-primary);
  animation: flow-v-visual-edit 18s linear infinite;
  opacity: 0.72;
}
.p-v-deliver,
.p-c-output {
  stroke: var(--ws-primary);
  animation: flow-orch-output 18s linear infinite;
  opacity: 0.78;
}
@keyframes flow-input {
  0% {
    stroke-dashoffset: 200;
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  12% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
}
@keyframes flow-dispatch {
  0%, 14% {
    stroke-dashoffset: 200;
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  26% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
}
@keyframes flow-submit1 {
  0%, 28% {
    stroke-dashoffset: 200;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  38% {
    opacity: 1;
  }
  40% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
}
@keyframes flow-reject {
  0%, 42% {
    stroke-dashoffset: 200;
    opacity: 0;
  }
  44% {
    opacity: 1;
  }
  52% {
    opacity: 1;
  }
  54% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
}
@keyframes flow-submit2 {
  0%, 56% {
    stroke-dashoffset: 200;
    opacity: 0;
  }
  58% {
    opacity: 1;
  }
  66% {
    opacity: 1;
  }
  68% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
}
@keyframes flow-release {
  0%, 70% {
    stroke-dashoffset: 200;
    opacity: 0;
  }
  72% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  82% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
}
@keyframes flow-website {
  0%, 84% {
    stroke-dashoffset: 200;
    opacity: 0;
  }
  86% {
    opacity: 1;
  }
  94% {
    opacity: 1;
  }
  96% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
}
@keyframes flow-orch-dispatch {
  0% {
    stroke-dashoffset: 200;
    opacity: 0;
  }
  3% {
    opacity: 1;
  }
  11% {
    opacity: 1;
  }
  13% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
}
@keyframes flow-v-script-edit {
  0%, 16% {
    stroke-dashoffset: 200;
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  28% {
    opacity: 1;
  }
  30% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
}
@keyframes flow-v-storyboard-edit {
  0%, 24% {
    stroke-dashoffset: 200;
    opacity: 0;
  }
  26% {
    opacity: 1;
  }
  36% {
    opacity: 1;
  }
  38% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
}
@keyframes flow-v-visual-edit {
  0%, 32% {
    stroke-dashoffset: 200;
    opacity: 0;
  }
  34% {
    opacity: 1;
  }
  44% {
    opacity: 1;
  }
  46% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
}
@keyframes flow-orch-output {
  0%, 52% {
    stroke-dashoffset: 200;
    opacity: 0;
  }
  54% {
    opacity: 1;
  }
  64% {
    opacity: 1;
  }
  66% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
}
.wf-svg-text {
  font-family: var(--fontFamily, system-ui, -apple-system, sans-serif);
  font-size: 9.5px;
  font-weight: 600;
  fill: var(--ws-text-sub);
  opacity: 0.5;
  text-anchor: middle;
}
.wf-svg-text.text-pass {
  fill: #10b981;
  opacity: 0.85;
}
.wf-svg-text.text-refactor {
  fill: #ef4444;
  opacity: 0.8;
}
.wf-node-tech {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  cursor: pointer;
}
.wf-glass-ring {
  display: none !important;
}
.wf-icon-core {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ws-bg);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--ws-text-sub);
  position: relative;
  z-index: 2;
  --inner-shadow: rgba(255, 255, 255, 0.8);
  --ambient-shadow: rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 16px var(--ambient-shadow);
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
[data-theme=dark] .wf-icon-core {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.12);
  --inner-shadow: rgba(255, 255, 255, 0.05);
  --ambient-shadow: rgba(0, 0, 0, 0.3);
}
.wf-node-tech:hover .wf-icon-core {
  color: var(--ws-primary);
  border-color: rgba(22, 119, 255, 0.22);
  transform: scale(1.06) translateY(-1px);
  box-shadow: 0 10px 20px -10px rgba(22, 119, 255, 0.28);
}
[data-theme=dark] .wf-node-tech:hover .wf-icon-core {
  border-color: rgba(22, 119, 255, 0.32);
  box-shadow: 0 10px 20px -10px rgba(22, 119, 255, 0.24);
}
.wf-node-label {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ws-text);
  transition: color 0.3s ease;
  pointer-events: none;
}
.wf-node-tech:hover .wf-node-label {
  color: var(--ws-primary);
}
.n-pm .wf-icon-core {
  animation: pulse-pm 18s ease-in-out infinite;
}
.n-fe .wf-icon-core,
.n-be .wf-icon-core {
  animation: pulse-fe-be 18s ease-in-out infinite;
}
.n-rev .wf-icon-core {
  animation: pulse-reviewer 18s ease-in-out infinite;
}
.n-rel .wf-icon-core {
  animation: pulse-release 18s ease-in-out infinite;
}
.n-web .wf-icon-core {
  animation: pulse-website 18s ease-in-out infinite;
}
.n-b-orchestrator .wf-icon-core,
.n-video-orchestrator .wf-icon-core {
  animation: pulse-orch-dispatch 18s ease-in-out infinite;
}
.n-b-gpt .wf-icon-core,
.n-b-grok .wf-icon-core,
.n-b-gemini .wf-icon-core,
.n-c-gpt .wf-icon-core,
.n-c-grok .wf-icon-core,
.n-c-gemini .wf-icon-core {
  animation: pulse-orch-branch 18s ease-in-out infinite;
}
.n-c-brain .wf-icon-core {
  animation: pulse-orch-merge 18s ease-in-out infinite;
}
.n-video-script .wf-icon-core {
  animation: pulse-v-script 18s ease-in-out infinite;
}
.n-video-storyboard .wf-icon-core {
  animation: pulse-v-storyboard 18s ease-in-out infinite;
}
.n-video-visual .wf-icon-core {
  animation: pulse-v-visual 18s ease-in-out infinite;
}
.n-video-editor .wf-icon-core {
  animation: pulse-v-editor 18s ease-in-out infinite;
}
.n-video-deliver .wf-icon-core {
  animation: pulse-v-deliver 18s ease-in-out infinite;
}
@keyframes pulse-pm {
  0%, 8%, 20%, 100% {
    transform: scale(1);
  }
  12% {
    transform: scale(1.03);
  }
}
@keyframes pulse-fe-be {
  0%, 20%, 32%, 56%, 68%, 100% {
    transform: scale(1);
  }
  24%, 60% {
    transform: scale(1.03);
  }
}
@keyframes pulse-reviewer {
  0%, 32%, 44%, 66%, 78%, 100% {
    transform: scale(1);
  }
  36%, 70% {
    transform: scale(1.03);
  }
}
@keyframes pulse-release {
  0%, 80%, 92%, 100% {
    transform: scale(1);
  }
  84% {
    transform: scale(1.03);
  }
}
@keyframes pulse-website {
  0%, 94%, 100% {
    transform: scale(1);
  }
  2% {
    transform: scale(1.04);
  }
}
@keyframes pulse-orch-dispatch {
  0%, 4%, 16%, 100% {
    transform: scale(1);
  }
  8% {
    transform: scale(1.03);
  }
}
@keyframes pulse-orch-branch {
  0%, 6%, 18%, 100% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.03);
  }
}
@keyframes pulse-orch-merge {
  0%, 42%, 54%, 100% {
    transform: scale(1);
  }
  48% {
    transform: scale(1.03);
  }
}
@keyframes pulse-v-script {
  0%, 8%, 20%, 36%, 100% {
    transform: scale(1);
  }
  12%, 32% {
    transform: scale(1.03);
  }
}
@keyframes pulse-v-storyboard {
  0%, 8%, 28%, 44%, 100% {
    transform: scale(1);
  }
  12%, 40% {
    transform: scale(1.03);
  }
}
@keyframes pulse-v-visual {
  0%, 8%, 36%, 52%, 100% {
    transform: scale(1);
  }
  12%, 48% {
    transform: scale(1.03);
  }
}
@keyframes pulse-v-editor {
  0%, 44%, 56%, 72%, 100% {
    transform: scale(1);
  }
  50%, 68% {
    transform: scale(1.03);
  }
}
@keyframes pulse-v-deliver {
  0%, 64%, 76%, 100% {
    transform: scale(1);
  }
  68% {
    transform: scale(1.04);
  }
}
.ws-workflow-desc {
  max-width: 760px;
  margin: 32px auto 80px;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}
.ws-workflow-desc--lead {
  margin: 0 auto 28px;
}
.ws-workflow-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ws-bg-sub);
  border: 1px solid var(--ws-border);
  padding: 7px 16px;
  border-radius: 99px;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ws-text);
  text-transform: uppercase;
}
.ws-workflow-desc-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--ws-text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.ws-workflow-desc-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ws-text-sub);
  margin: 0;
}
.ws-final-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.wf-stage-mobile {
  display: none;
  padding: 0 12px 8px;
}
.wf-stage-mobile-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: var(--wf-stage-aspect, 780 / 300);
  overflow: hidden;
}
.wf-stage-mobile-canvas .wf-svg-lines--mobile {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.wf-node-tech--mobile .wf-icon-core {
  width: 34px;
  height: 34px;
}
.wf-node-tech--mobile .wf-node-label {
  margin-top: 6px;
  font-size: 9px;
  max-width: 72px;
  text-align: center;
  line-height: 1.25;
}
.wf-diagram-skeleton {
  width: min(940px, 100%);
  aspect-ratio: 940 / 360;
  height: auto;
  min-height: 240px;
  margin: 0 auto 24px;
  border-radius: 20px;
  background: color-mix(in srgb, var(--backgroundSecondary) 72%, var(--background));
  border: 1px solid var(--borderFaint, var(--borderLight));
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.wf-diagram-skeleton__lines {
  height: 58%;
  border-radius: 12px;
  background:
    linear-gradient(
      90deg,
      var(--backgroundSecondary) 0%,
      color-mix(in srgb, var(--backgroundSecondary) 65%, var(--background)) 50%,
      var(--backgroundSecondary) 100%);
  background-size: 200% 100%;
  animation: wf-diagram-shimmer 1.4s ease-in-out infinite;
}
@keyframes wf-diagram-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
.wf-diagram-skeleton__nodes {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.wf-diagram-skeleton__nodes span {
  flex: 1;
  height: 52px;
  border-radius: 999px;
  background: var(--backgroundSecondary);
}
@media (max-width: 768px) {
  .wf-stage-mobile {
    display: block;
  }
  .wf-mobile-steps {
    margin-top: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ws-orchestration-tab-body {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .wf-diagram-skeleton__lines {
    animation: none;
  }
}
.home-layout {
  min-height: 100vh;
  background-color: var(--surfaceCanvas, var(--background));
}
.home-layout--guest {
  background-image:
    linear-gradient(
      to bottom,
      color-mix(in srgb, var(--surfaceSidebar, var(--backgroundSecondary)) 38%, transparent) 0%,
      var(--surfaceCanvas, var(--background)) 180px);
}
.home-layout--authed {
  background-image:
    linear-gradient(
      to bottom,
      color-mix(in srgb, var(--surfaceSidebar, var(--backgroundSecondary)) 56%, transparent) 0%,
      var(--surfaceCanvas, var(--background)) 280px);
}
.home-main {
  --home-content-max-width: 1040px;
  max-width: 1160px;
  margin: 0 auto;
  padding: var(--space-10) var(--space-6) var(--space-16);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.home-hero-shell {
  width: 100%;
  min-height: clamp(280px, 36vw, 520px);
}
.home-hero-shell[data-mode=logged-in] {
  min-height: clamp(320px, 34vw, 420px);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.home-hero-shell.is-empty-state {
  justify-content: center;
  gap: var(--space-8);
}
.home-hero-shell.is-empty-state .actions-section,
.home-hero-shell.is-empty-state .quick-options-section {
  opacity: 0.8;
  transform: scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.home-hero-shell.is-empty-state .actions-section:hover,
.home-hero-shell.is-empty-state .quick-options-section:hover {
  opacity: 1;
  transform: scale(1);
}
.home-primary-chat {
  width: 100%;
  max-width: var(--home-content-max-width);
  margin: clamp(8px, 1vw, 14px) auto 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  animation: home-surface-in var(--home-motion-duration-slow) var(--home-motion-ease) 0.04s both;
}
@keyframes home-surface-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.home-hero-shell[data-mode=logged-in] .home-primary-chat {
  order: 2;
}
.home-hero-shell[data-mode=logged-in] .actions-section {
  animation: home-surface-in var(--home-motion-duration-slow) var(--home-motion-ease) 0.12s both;
}
.home-hero-shell[data-mode=logged-in] .action-card {
  opacity: 0;
  animation: home-surface-in var(--home-motion-duration-slow) var(--home-motion-ease) both;
}
.home-hero-shell[data-mode=logged-in] .action-card:nth-child(1) {
  animation-delay: 0.14s;
}
.home-hero-shell[data-mode=logged-in] .action-card:nth-child(2) {
  animation-delay: 0.2s;
}
.home-hero-shell[data-mode=logged-in] .action-card:nth-child(3) {
  animation-delay: 0.26s;
}
.home-content-section {
  opacity: 1;
  max-width: var(--home-content-max-width);
  margin-inline: auto;
  width: 100%;
  padding: clamp(20px, 2vw, 28px) 0;
  border: none;
  background: transparent;
  box-shadow: none;
}
.home-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-5);
  gap: 12px;
  width: 100%;
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--borderFaint);
}
.home-content-header > .home-content-tabs {
  flex: 1;
  min-width: 0;
}
.home-content-tabs {
  max-width: 420px;
}
.home-content-tabs .tabs {
  width: 100%;
  grid-template-columns: unset;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  border: 1px solid color-mix(in srgb, var(--borderLight) 92%, transparent);
  background: var(--surfaceInteractive, var(--backgroundSecondary));
}
.home-content-tabs .tab-item {
  min-width: 0;
  padding: 0 12px;
  color: var(--textMuted, var(--textSecondary));
  font-weight: 600;
}
.home-content-tabs .tab-item[data-active=true] {
  color: var(--text);
  font-weight: 650;
}
.home-content-tabs .tabs::after {
  box-shadow: 0 1px 2px var(--shadowLight), 0 8px 18px -20px var(--shadowMedium);
}
[data-theme=dark] .home-content-tabs .tabs::after {
  background: var(--backgroundHover);
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.4);
}
.home-view-all-link {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--textSecondary);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--fontSize-sm);
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surfaceInteractive, var(--backgroundSecondary));
  border: 1px solid var(--borderMuted, var(--borderLight));
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.home-view-all-link:hover {
  color: var(--primary);
  background: var(--surfaceInteractiveHover, var(--backgroundHover));
  border-color: var(--primaryBorder, var(--primary));
}
.home-content-body {
  position: relative;
  min-height: 340px;
  width: 100%;
  padding-top: 4px;
  transition: min-height var(--home-motion-duration) var(--home-motion-ease);
}
#ai-plaza-section {
  scroll-margin-top: clamp(16px, 4vw, 32px);
}
.home-content-fallback {
  min-height: 340px;
  width: 100%;
}
.activity-pane {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: static;
  animation: home-activity-pane-in var(--home-motion-duration) var(--home-motion-ease) var(--home-motion-delay) both;
}
@keyframes home-activity-pane-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.home-plaza-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin: 0 auto var(--space-4);
  max-width: var(--home-content-max-width);
}
.home-plaza-bridge__kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--textMuted, var(--textSecondary));
  white-space: nowrap;
}
.home-plaza-bridge__line {
  display: block;
  width: min(120px, 24vw);
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--borderMuted, var(--borderLight)),
      transparent);
}
.home-pane-skeleton {
  width: 100%;
  min-height: 340px;
}
.home-pane-skeleton__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-4);
}
.home-pane-skeleton__card {
  border: 1px solid var(--borderFaint, var(--borderLight));
  border-radius: var(--radius-lg, 16px);
  padding: var(--space-4);
  background: var(--surfaceRaised, var(--background));
}
.home-pane-skeleton__header {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.home-pane-skeleton__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.home-pane-skeleton__header-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.home-pane-skeleton__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.home-pane-skeleton__line {
  height: 10px;
  border-radius: 999px;
}
.home-pane-skeleton__line--title {
  width: 72%;
}
.home-pane-skeleton__line--subtitle {
  width: 48%;
}
.home-pane-skeleton__line--short {
  width: 56%;
}
.home-pane-skeleton__shimmer {
  background:
    linear-gradient(
      90deg,
      var(--backgroundSecondary) 0%,
      color-mix(in srgb, var(--backgroundSecondary) 70%, var(--background)) 50%,
      var(--backgroundSecondary) 100%);
  background-size: 200% 100%;
  animation: home-pane-shimmer 1.4s ease-in-out infinite;
}
@keyframes home-pane-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
.tab-label-with-icon {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  letter-spacing: -0.01em;
}
@media (max-width: 640px) {
  .home-main {
    padding: var(--space-6) var(--space-4) var(--space-10);
    gap: var(--space-6);
  }
  .home-content-section {
    padding: var(--space-2) 0;
  }
  .home-hero-shell {
    min-height: 240px;
  }
  .home-primary-chat {
    margin-top: var(--space-2);
  }
  .home-content-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: var(--space-6);
  }
  .home-view-all-link {
    align-self: flex-end;
    font-size: var(--fontSize-sm);
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-view-all-link,
  .home-primary-chat,
  .home-hero-shell[data-mode=logged-in] .action-card,
  .activity-pane {
    animation: none;
    transform: none;
    opacity: 1;
  }
  .home-content-body {
    transition: none;
  }
  .home-pane-skeleton__shimmer {
    animation: none;
  }
}
.home-recent-title {
  font-size: var(--fontSize-lg, 18px);
  font-weight: 650;
  color: var(--textNormal, var(--textPrimary));
  margin: 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
