.sphere-page-hero {
  padding: 64px 48px 40px;
  background: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 40px;
  align-items: center;
}

.sphere-hero-copy {
  max-width: 560px;
}

.sphere-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  color: #fff;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .7px;
  margin-bottom: 22px;
}

.sphere-eyebrow .icon {
  width: 15px;
  height: 15px;
}

.sphere-page-hero h1 {
  font-size: 46px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -1px;
  color: #0a0a0a;
  margin-bottom: 20px;
}

.sphere-page-hero p {
  font-size: 17px;
  line-height: 1.62;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.sphere-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sphere-orbit-art {
  width: 100%;
  max-width: 480px;
  height: auto;
}

.sphere-orbit-node > circle:first-child {
  fill: #fff;
  stroke: var(--blue);
  stroke-width: 2;
}

.sphere-page-features {
  padding: 70px 48px;
  max-width: 1180px;
  margin: 0 auto;
}

.sphere-section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}

.sphere-section-head h2 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 12px;
}

.sphere-section-head p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}

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

.sphere-feature-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  padding: 22px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}

.sphere-feature-card:hover {
  border-color: #c8d8f8;
  box-shadow: 0 12px 28px rgba(26, 79, 196, .1);
  transform: translateY(-2px);
}

.sphere-feature-card h3 {
  font-size: 16px;
  font-weight: 750;
  color: #111;
  margin-bottom: 7px;
}

.sphere-feature-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.55;
}

.sphere-feature-card-visual {
  padding: 0;
}

.sphere-card-body {
  padding: 20px 22px 24px;
}

.sphere-card-visual {
  aspect-ratio: 4 / 3;
  background: #eef2ff;
  position: relative;
  overflow: hidden;
}

.sphere-chat-visual {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px;
  padding: 18px;
}

.sphere-mini-sidebar,
.sphere-mini-chat {
  background: #fff;
  border-radius: 10px;
  padding: 14px 12px;
}

.sphere-mini-sidebar span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: #cbd5e1;
  margin-bottom: 10px;
}

.sphere-mini-sidebar span:first-child {
  width: 56px;
  height: 8px;
  background: var(--blue);
}

.sphere-mini-sidebar span:nth-child(2) {
  width: 42px;
}

.sphere-mini-sidebar span:nth-child(3) {
  width: 54px;
}

.sphere-mini-sidebar span:nth-child(4) {
  width: 34px;
}

.sphere-mini-chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sphere-mini-chat .bubble {
  height: 20px;
  border-radius: 999px;
  background: #f1f5f9;
  width: 74%;
}

.sphere-mini-chat .bubble.blue {
  background: var(--blue);
  align-self: flex-end;
  width: 68%;
}

.sphere-mini-chat .bubble.short {
  width: 54%;
}

.sphere-mini-chat .typing {
  display: flex;
  gap: 6px;
  align-items: center;
  width: 52px;
  height: 20px;
  border-radius: 999px;
  background: #f1f5f9;
  justify-content: center;
}

.sphere-mini-chat .typing i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #94a3b8;
}

.sphere-task-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 18px;
}

.sphere-task-visual > div {
  background: #fff;
  border-radius: 10px;
  padding: 14px 12px;
}

.sphere-task-visual strong,
.sphere-task-visual span {
  display: block;
  border-radius: 999px;
}

.sphere-task-visual strong {
  width: 58%;
  height: 8px;
  background: #94a3b8;
  margin-bottom: 14px;
}

.sphere-task-visual div:nth-child(2) strong {
  width: 70%;
  background: var(--blue);
}

.sphere-task-visual div:nth-child(3) strong {
  background: #16a34a;
}

.sphere-task-visual span {
  height: 46px;
  background: #f1f5f9;
  margin-bottom: 10px;
}

.sphere-task-visual div:nth-child(2) span {
  height: 58px;
  background: #dbeafe;
}

.sphere-task-visual div:nth-child(3) span {
  height: 52px;
  background: #dcfce7;
}

.sphere-task-visual em,
.sphere-task-visual b {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #bfdbfe;
}

.sphere-task-visual b {
  background: #22c55e;
  position: relative;
}

.sphere-task-visual b::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  width: 10px;
  height: 6px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
}

.sphere-investor-visual {
  padding: 24px;
  background: #eef2ff;
}

.sphere-investor-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 12px;
  background: #fff;
}

.sphere-ring {
  position: absolute;
  left: 36px;
  top: 72px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #1e293b;
  background: #fff;
  border: 8px solid #e2e8f0;
  border-top-color: var(--blue);
  border-left-color: var(--blue);
}

.sphere-bars {
  position: absolute;
  left: 150px;
  right: 34px;
  bottom: 72px;
  height: 100px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.sphere-bars span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: #bfdbfe;
}

.sphere-bars span:nth-child(1) {
  height: 40%;
}

.sphere-bars span:nth-child(2) {
  height: 60%;
  background: #93c5fd;
}

.sphere-bars span:nth-child(3) {
  height: 80%;
  background: var(--blue);
}

.sphere-bars span:nth-child(4) {
  height: 50%;
  background: #60a5fa;
}

.sphere-bars span:nth-child(5) {
  height: 70%;
  background: #3b82f6;
}

.sphere-readonly {
  position: absolute;
  left: 36px;
  right: 34px;
  bottom: 32px;
  height: 18px;
  border-radius: 999px;
  background: #f1f5f9;
}

.sphere-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--blue);
}

.sphere-icon-box .icon {
  width: 22px;
  height: 22px;
}

.sphere-team-strip {
  padding: 0 48px 80px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.sphere-strip-img {
  background: #fdf2f8;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sphere-strip-img img {
  border-radius: 14px;
  max-width: 340px;
  width: 100%;
  height: auto;
}

.sphere-strip-text span,
.sphere-cta-content span {
  display: block;
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .8px;
  margin-bottom: 14px;
}

.sphere-strip-text h2 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  color: #111;
  margin-bottom: 16px;
}

.sphere-strip-text p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.sphere-strip-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sphere-strip-points div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.5;
  color: #374151;
}

.sphere-strip-points .icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  padding: 5px;
  background: var(--blue);
  color: #fff;
  flex-shrink: 0;
}

.sphere-page-cta {
  margin: 20px 48px 70px;
  border-radius: 24px;
  overflow: hidden;
  background: #0f172a;
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: stretch;
}

.sphere-cta-content {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sphere-cta-content span {
  color: #93c5fd;
}

.sphere-cta-content h2 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 16px;
}

.sphere-cta-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 26px;
  max-width: 440px;
}

.sphere-cta-img {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.sphere-cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sphere-cta-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .32);
}

@media (max-width: 900px) {
  .sphere-page-hero {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .sphere-page-hero h1 {
    font-size: 32px;
  }

  .sphere-page-features {
    padding: 56px 20px;
  }

  .sphere-feature-grid,
  .sphere-team-strip,
  .sphere-page-cta {
    grid-template-columns: 1fr;
  }

  .sphere-team-strip {
    padding: 0 20px 60px;
  }

  .sphere-page-cta {
    margin: 20px;
  }

  .sphere-cta-img {
    display: none;
  }

  .sphere-cta-content {
    padding: 40px 24px;
  }

  .sphere-card-visual {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 560px) {
  .sphere-page-hero p {
    font-size: 15px;
  }

  .sphere-chat-visual {
    grid-template-columns: 64px 1fr;
    padding: 12px;
  }

  .sphere-task-visual {
    gap: 8px;
    padding: 12px;
  }

  .sphere-ring {
    left: 28px;
    top: 64px;
  }

  .sphere-bars {
    left: 128px;
    right: 26px;
  }

  .sphere-section-head h2,
  .sphere-cta-content h2 {
    font-size: 26px;
  }

  .sphere-strip-text h2 {
    font-size: 24px;
  }
}
